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