using System;
public class Program
{
public static void Main()
int x = 10;
int y = 20;
int z = x+y;
Console.WriteLine(z);
}