using System;
using System.Threading;
public class Program
{
public static void Main()
DateTime f = DateTime.Now;
Thread.Sleep(1000);
DateTime g = DateTime.Now;
Console.WriteLine(g > f ? "g is greater than f" : "More hypotheses required.");
}