using System;
using System.Collections.Generic;
using System.Linq;
public class Program
{
public static void Main()
//You have a collection of integers, 1 to 100.
//I want you to cycle through this collection.
//For each number found that is evenly divisible by 3, output the word "Fizz.
//For each number that is evenly divisible by 5, output the word "Buzz".
//For each number that is evenly divisible by both 3 AND 5, output the word "FizzBuzz".
var listInt = new List<int>();
for (var i = 1; i < 101; i++)
listInt.Add(i);
}
for (var i=0; i< listInt.Count(); i++)
Console.WriteLine(listInt[i].ToString());
Console.ReadLine();