//create a car class 
public class Car
{
  
  // create a fullThrottle() method 
  public void fullThrottle()
  {
    System.out.println("the car is going as fast as it can!");
  }
  
  // create a speed() method ans add a parameter.
  public void speed(int Maxspeed)
  {
   System.out.println("maxspeed is : " + Maxspeed);
  }
  
  //inside main call the methods on the my car Object
  public static void main(String[]args)
  {
    Car myCar=new Car();
    myCar.fullThrottle();
    myCar.speed(200);
  }
}