// Building Java Programs labs
// This client program tests the behavior of your MonsterTruck class.

public class AutoMain {
	public static void main(String[] args) {
		MonsterTruck bigfoot = new MonsterTruck();
		bigfoot.m1();                  // monster 1
		bigfoot.m2();                  // truck 1 / car 1
		System.out.println(bigfoot);   // monster vroomvroom
	}
}