Contact: aviboots(AT)netvision.net.il
40,764 questions
53,140 answers
573 users
using System; class Program { static void Main() { int a = 3; int b = 9; int c = 4; if (!(a >= b || a >= c)) { Console.WriteLine("!(a >= b || a >= c)"); } else { Console.WriteLine("(a >= b || a >= c)"); } } } /* run: !(a >= b || a >= c) */