using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
//Print number starting from 1 to 100.
//When a number is multiple of three, print “Fizz” instead of a number on the console
//and if multiple of five then print “Buzz” on the console.
//For numbers which are multiple of three as well as five, print “FizzBuzz” on the console
}