← Back to List

6438번: Reverse Text ↗

Solutions

Python 3
53 B | 53 chars
for i in range(int(input())):
  print(input()[::-1])