using System;
namespace MyApplication
{
public class Car
public string model;
public string color;
public int year;
public void fullThrottle()
Console.WriteLine("The car is going as fast as it can!");
}