using System;
public class Program
{
public static void Main()
int a;
int b;
a = 10;
b = 5;
Console.Write("this is " + (a+b));
Console.ReadKey();
}