using System;
public class Program
{
public static void Main()
int a = 1;
int b = 2;
string r = "R = "+(a+b);
Console.WriteLine(r);
}