school/cs235/lab04/bin/runner.py

8 lines
94 B
Python

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