7 lines
145 B
Python
7 lines
145 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
with open('./output.txt') as file:
|
||
|
content = file.read()
|
||
|
print(eval(content))
|