forked from colonelpanic/dotfiles
11 lines
141 B
Python
Executable File
11 lines
141 B
Python
Executable File
#!/usr/bin/env python
|
|
import sys
|
|
|
|
|
|
def unescape(string):
|
|
print(eval(string))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unescape(sys.stdin.read())
|