using System;
public class Program
{
public static void Main()
///The Fizz buzz challenge. Write a program that prints the numbers from 1 to 100.
///But for multiples of three print “Fizz” instead of the number and for the multiples of five print “Buzz”.
///For numbers which are multiples of both three and five print “FizzBuzz”.
///If stuck research if and else statements! If really stuck : https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/if-else
///and https://www.w3schools.com/cs/cs_conditions.asp and https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/operators/arithmetic-operators
///Once completed or stuck take a look at Tom Scott: https://www.youtube.com/watch?v=QPZ0pIK_wsc
}