using System;
public class Program
{
//1. Write a program that prints the numbers from 1 to 100.
//But for multiples of 3 print “foo” instead of the number,
//And for the multiples of 5 print “bar”.
//For numbers which are multiples of both 3 and 5 print “foobar”.
//2. Write a function which returns the first non-repeating character in the string "AABBCDDEEF"
public static void Main()
Console.WriteLine("Hello World");
}