using System; class Prog { static void Main() { int a = 3; int b = 4; int c; c = a + b; Console.Write("Ă–sszeg: " + c); } }