class VerCar
{
public static void main(String[] args)
{
Car c=new Car();
show(new Car());
}
public static void show(Car c)
{
String.color="break";
int.b=3;
c.run();
}
}
class Car
{
String color="red";
int b=4;
void run()
{
System.out.print("color="+color+","+"b="+b);
}
}