public static void Main()
int rc=0, rcp = 4, other, otherpr = 3, free = 0, visit=0;
double price1,price2,price3;
Console.WriteLine("How much roller coast tickets?");
rc = int.Parse(Console.ReadLine());
Console.WriteLine("How many tickets for other Facilities you want");
other = int.Parse(Console.ReadLine());
price2 = other * otherpr;
Console.WriteLine("How many visitors?");
visit = int.Parse(Console.ReadLine());
Console.WriteLine("You got a free ticket");
Console.WriteLine("The total cash in the Cash register is "+ price3 );
Console.WriteLine("The number of the total visitors is"+ visit);