csc-python-solutions/07/a/5 - Pig Latin.py
2021-02-18 18:32:38 +01:00

3 lines
54 B
Python

string = input()
print(string[1:] + string[0] + "ay")