Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- first_chr = input()
- second_chr = input()
- third_chr = input()
- print(first_chr + second_chr + third_chr)
- #print(f'{first_chr}{second_chr}{third_chr}')
- OR:
- first_chr = ord(input())
- second_chr = ord(input())
- third_chr = ord(input())
- print(chr(first_chr) + chr(second_chr) + chr(third_chr))
- Тарикатско решение:)
- print(input() + input() + input())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement