using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
/*Suppose i travel by metro, then by bus then by taxi to reach the office during weekdays.
I have a budget for each day, your code have to decide if i will reach the office or not within the budget amount.
But i have some conditions. And my expenditure is flexible.
I can spend a maximum of 50 on a metro.
I can spend a maximum of 120 on a taxi.
I can spend a maximum of 62 on a bus.
If i spend just an amount upto 20 on a metro. Then my taxi charges maximum can increase to 135.
If i spend just an amount upto 60 for a taxi. Then my bus charges maximum can increase to 99.
Input : budget followed by charges will be in the form of comma saperated numbers . Budget,Metro Charges,Taxi Charges,Bus Charges
Ouput : within budget, then print "Reaches office". else "Not reaches office"
For example, input is 120,45,30,20, then print "Reaches office", because the budget is within the limits
if input is 240,20,130,70, then print "Not reaches office", even the total amount is within the budget, the bus charges has exceeded value 62 */
}