using System;
public class Program
{
/*
Write a program that prints the numbers 1 to 100
If the number is a multiple of 3, print the word “Fizz”
When the number is a multiple of 5, print the word “Buzz”
For numbers that are a multiple of both 3 and 5, print the word “FizzBuzz”
*/
public static void Main()
Console.WriteLine("Hello World");
}
private void FizzBuzz()
// Code goes here