# Enter your code here. Read input from STDIN. Print output to STDOUT firstName = raw_input() lastName = raw_input() print "Hello " + firstName + " " + lastName + "! You just delved into python."