school/cs235/lab04/bin/runner.py
2016-04-06 20:46:10 -07:00

8 lines
94 B
Python

import sys
from shunting import shunt
for line in sys.stdin:
print shunt(line.split())