using System;
public class Program
{
public static void Main()
int a;
int b;
int c;
int d;
int e;
int f=3, g=2;
a= (f+g);
b= (f-g);
c= (f*g);
d= (f%g);
e= (f=g);
Console.WriteLine("Addition:" + + ("+") + g + ("=") + a);
}