# Modify the variable value here first_name = 'John' last_name = 'Doe' # No need to modify after this line for now def whatIsMyEmail(first_name, last_name): print(first_name+'.'+last_name+'@city.ac.uk') whatIsMyEmail(first_name, last_name)