wmt-2020-pl-en/to_upper.py
2021-02-07 20:40:38 +01:00

7 lines
96 B
Python

import sys
for line in sys.stdin:
line = line.rstrip()
line = line.capitalize()
print(line)