using System;
public class Program
{
public static void Main()
/*
Req 1. Print numbers from 1 to 100.
Req 2. If the numbers are multiples of 3 then Fizz is printed.
Req 3. If they are multiples of 5, then Buzz is printed and if they are multiples of both 3 and 5 then FizzBuzz is printed.
*/
}