simeonshopov

Concat names

Nov 25th, 2019
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. first_name = input()
  2. last_name = input()
  3. delimiter = input()
  4.  
  5. result = f"{first_name}{delimiter}{last_name}"
  6. print(result)
Advertisement
Add Comment
Please, Sign In to add comment