using System;
public class Program
{
public static void Main()
for(int i=1; i<=100;i++){
if(i % 3 == 0){
Console.WriteLine("Fizz");
}
else if(i % 5 == 0){
Console.WriteLine("Buzz");
else{
Console.WriteLine(i);
//Write a program that prints the numbers from 1 to 100 and for multiples of `3` print `Fizz` intead of the number and for the multiples of `5` print `Buzz`.
/*
Given a string: "Hello World This is a great world, This World is simply great"
Count the occurences of each word, and then print out the most frequent, case insensitive.
Print the second most frequent word, case insensitive.
*/