// *****************************************************************************
// Write a short program that prints each number from 1 to 100 on a new line.
// For each number divisible by 3, print "Fizz" instead of the number.
// For each number divisible by 5, print "Buzz" instead of the number.
// For numbers which are divisible by both 3 and 5, print "FizzBuzz" instead of the number.
// HINT: with the modulo operator (%) you can check divisibility
// e.g. 25 % 5 == 0 means it is divisible by 5
using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
}