public static void Main()
Console.WriteLine("|~Calculator by Amarlee Brooke~|");
Console.WriteLine("|......Type first number.......|");
int x = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("| Type *,/,+,-,% |");
string z = Console.ReadLine();
Console.WriteLine("|......Type second number......|");
int y = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("|>>>>>>>>>>~Answer:{0}~<<<<<<<<<<|", x + y);
Console.WriteLine("|>>>>>>>>>>~Answer:{0}~<<<<<<<<<<|", x - y);
Console.WriteLine("|>>>>>>>>>>~Answer:{0}~<<<<<<<<<<|", x * y);
Console.WriteLine("|>>>>>>>>>>~Answer:{0}~<<<<<<<<<<|", x / y);
Console.WriteLine("|>>>>>>>>>>~Answer:{0}~<<<<<<<<<<|", x / y * 100);