wmt-2020-pl-en/to_upper.py

7 lines
96 B
Python
Raw Normal View History

2021-02-07 20:40:38 +01:00
import sys
for line in sys.stdin:
line = line.rstrip()
line = line.capitalize()
print(line)