Solution of the Day
def print_full_name(first, last):
# Write your code here
string = "Hello"+" "+first+" "+last+"! You just delved into python."
print(string)
if name == '__main__':
first_name = input()
last_name = input()
print_full_name(first_name, last_name)