//You have a timer chip. You can tell the timer chip to wait for a duration at the end of which the chip will wake up and do a task.
//You have to design a module that makes use of this timer to carry out multiple asynchronous tasks that will be given to the module.
//You can assume you have a timer object in your code, on which you can call the following api
//a) set_timer - with argument as the time that you want the timer chip to wait.
using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello Tarik");
}