# https://open.kattis.com/problems/thelastproblem
# 1s
# 1.7 Easy

# 45 chars: Top list shortest programs is 42..45 but this is not included.
# This is - however - in Top list fastest Ruby programs place 10: 0.06s
# And place 3 in shortest Ruby programs (it's only 8 programs in the list :-)
puts "Thank you, #{gets.strip}, and farewell!"

# Note that p add quotes to the string which is not correct...

# Same length and same time (45 chars and 0.06s)
# puts"Thank you, "+gets.strip+", and farewell!"

# 47 chars
# puts "Thank you, "+gets.strip+", and farewell!"
