aboutsummaryrefslogtreecommitdiff
path: root/challenge-143/abigail/python/ch-1.py
blob: 3b67604548112883d10072bd202be1369cac2bf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/opt/local/bin/python

#
# See ../README.md
#

#
# Run as: python ch-1.py < input-file
#

import fileinput

for line in fileinput . input (): print (eval (line))