using System;
public class Program
{
public static void Main()
int a, b, c;
a= 12; b=6;
if (a<b || b>10) { a = b; }
else {a = 20; }
c = a + b;
}