4 lines
82 B
Python
4 lines
82 B
Python
with open('input.txt', 'r') as file:
|
|
raw_input = file.read()
|
|
|
|
print(raw_input) |