class Bmw
{
public static void main(String args[])
{
Bmw car = new Bmw();
car.go_to_race();
}
public int go_to_race()
{
System.out.println("we are going to race");
return 700000;
}
}
-
out put:

For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)