class Vehicle {
    public long VIN;
    public String ownerName;
    public float speed;
    public float direction;

    public static long nextVIN = 0;

    public static void main(String args[]) {
	Vehicle myCar = new Vehicle();
	myCar.VIN = nextVIN++;
	myCar.ownerName = "Peter";
	myCar.speed = 65;
	myCar.direction = 90;

	Vehicle momsCar = new Vehicle();
	momsCar.VIN = nextVIN++;
	momsCar.ownerName = "Nancy";
	momsCar.speed = 55;
	momsCar.direction = 45;

	Vehicle dadsCar = new Vehicle();
	dadsCar.VIN = nextVIN++;
	dadsCar.ownerName = "Richard";
	dadsCar.speed = 75;
	dadsCar.direction = 0;

	System.out.println("Vehicle owned by " + myCar.ownerName +
	                   " is traveling " + myCar.speed +
	                   " MPH at " + myCar.direction + " degrees.");
	System.out.println("Vehicle owned by " + momsCar.ownerName +
	                   " is traveling " + momsCar.speed +
	                   " MPH at " + momsCar.direction + " degrees.");
	System.out.println("Vehicle owned by " + dadsCar.ownerName +
	                   " is traveling " + dadsCar.speed +
	                   " MPH at " + dadsCar.direction + " degrees.");
    }
}
