Artifact da8352105d588b9376c8bccc4b13b0423e6c4b78
- File
_lib/gcj/!gcj-tmpl.py
- 2011-02-23 09:21:16 - part of checkin [4fd800b3a8] on branch trunk - Copied from private svn repository. (user: kinaba) [annotate]
- File
lib/gcj/!gcj-tmpl.py
- 2011-02-23 11:18:09 - part of checkin [23dfcca431] on branch trunk - renamed _lib to lib (user: kinaba) [annotate]
import sys CN = int(sys.stdin.next()) for C in range(1, CN+1): print "Case #%d:"%(C), N = int(sys.stdin.next()) M = int(sys.stdin.next()) for i in range(0, M): a = map(int, sys.stdin.next().split(" ")) print a print N, M