diff options
| author | Yuval Adam <yuv.adm@gmail.com> | 2011-05-20 11:17:41 +0300 |
|---|---|---|
| committer | Yuval Adam <yuv.adm@gmail.com> | 2011-05-20 11:17:41 +0300 |
| commit | 09cbe28e3e359ba1e39a68c6fd73af051b0ce935 (patch) | |
| tree | f693e17b48e720095bee1d95045ca2d712477615 /2011/1a/b/b.py | |
| parent | 8265fe327cc95f32c345b663d9b31ef377e5ec62 (diff) | |
prepared directories for 2011 round 1A
Diffstat (limited to '2011/1a/b/b.py')
| -rw-r--r-- | 2011/1a/b/b.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2011/1a/b/b.py b/2011/1a/b/b.py new file mode 100644 index 0000000..7bc039a --- /dev/null +++ b/2011/1a/b/b.py @@ -0,0 +1,13 @@ +f = open('1.in', 'r') +o = open('1.out', 'w') + +T = int(f.readline().strip()) + +for t in xrange(T): + (n, m, o) = map(int, f.readline().strip().split(' ')) + l = f.readline().strip() + + res = str(n) + str(m) + str(o) + l + s = "Case #%d: %s\n" % (t+1, res) + print s + #o.write(s) |
