using System;
public class Program
{
/*
This problem was asked by Apple.
Implement a job scheduler which takes in a function f and an integer n, and calls f after n milliseconds.
*/
public static void Main()
Console.WriteLine("Hello World");
}