using System;
public class Program
{
public static void Main()
int a = 5;
string b = "10";
Console.WriteLine(a + b);
}