using System;
public class Program
{
public static void Main()
// Problem #1:
// Write a program that prints the numbers from 1 to 100 with the following caveats:
// 1) Print Fizz instead of the number if it is divisible by 3
// 2) Print Buzz instead of the number if it is divisible by 5
// 3) Print FizzBuzz instead of the number if it is divisible by 3 and 5
Console.WriteLine("Programming Problem - FizzBuzz - Start");
Console.WriteLine("Programming Problem - FizzBuzz - End");
}