import java.util.*;

class Ideone
{
	public static void main (String[] args)
	{
		Scanner s = new Scanner(System.in);
		int age = Integer.parseInt(s.nextLine());
		float salary = Float.parseFloat(s.nextLine());
		String name = s.nextLine();
		
		System.out.println("Hello "+name);
		System.out.println("You are "+age+" years old.");
		System.out.println("Your current salary is "+salary);
		salary = salary + 100;
		System.out.println("Now you have earned Rs.100 extra on your salary ");
		System.out.println("Your current salary is "+salary);
	}
}