Advertisement
MaximTakkaTo

task2

Mar 11th, 2022
580
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. first_string = str.split(input(), " ")
  2. second_string = str.split(input(), " ")
  3.  
  4. for first_name, last_name in zip(first_string, second_string):
  5.     print(first_name, last_name)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement