using System;
public class Program
{
public static void Main()
int a, b, c;
a=12; b=6;
if(a>b) a=b;
c= a+b;
Console.WriteLine(c);
}