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