class vehicle { string brand; string model; int year; int millege; string fuel_type; string colour; string transmission_type; string engine_type; int seats; int tank_capacity; public static void main(String[] args) { car obj1= new car(); scanner s= new scanner(system.in); system.out.printlm("Enter car_name:"); obj1.car_name=s.next(); system.out.println("Enter car_number"); obj1.car_number=s.nextInt(); } }