/*
Problem 1: Write a black of code to print out the numbers from 1 to 100,
replacing multiples of 3 with x, and multiples of 5 with y
Problem 2: Write a method that sums a sequence of integer values given
a starting integer and an ending integer. Ex. if starting integer is 12 and ending is 15
the program should return 12 + 13 + 14 + 15 = 54.
You can assume that the starting value will always be less than the ending values.
*/
using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
}