public static void Main()
Console.WriteLine("Írd be a számot!");
String változo = (Console.ReadLine());
int szam1 = Convert.ToInt32(változo);
Console.WriteLine("Írd be a másik számot");
String változó = (Console.ReadLine());
int szam2 = Convert.ToInt32(változó);
Console.WriteLine("Eredmény: "+(szam1+szam2));
Console.WriteLine("Kivonás: "+(szam1-szam2));
Console.WriteLine("Szorzat: "+(szam1*szam2));
Console.WriteLine("Osztás: "+(szam1/szam2));