djfz-24_25/TaskB02/task2.py

7 lines
168 B
Python
Raw Normal View History

2024-11-25 12:14:04 +01:00
import regex as re
with open('simple.in', encoding='utf8') as file:
lines = file.readlines()
for line in lines:
line = line.strip()
print(line)