using System;
using System.Collections.Generic;
using System.Threading.Tasks;
Console.WriteLine("Hello, World");
// go over numbers from 1 to 100
// if the number is divisible by three, then print 'fizz'
// if the number is divisible by five, then print 'buzz'
// if the number is divisible by both three and five, then print 'fizzbuzz'
// otherwise print the number as is