Skip to content

Instantly share code, notes, and snippets.

@mlbright
Created November 20, 2009 02:38
Show Gist options
  • Save mlbright/239239 to your computer and use it in GitHub Desktop.
Save mlbright/239239 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
import sys
filename = sys.argv[1]
input = open(filename)
n, m = ( int(x) for x in input.readline().strip().split() ])
print "%d %d" % (n,m)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment