summaryrefslogtreecommitdiff
path: root/2010/1a/a.py
blob: cd6572754f9627c6a6128c93d52a9c54dbe786fd (plain)
1
2
3
4
5
6
7
8
9
10
11
f = open('1.in', 'r')
o = open('1.out', 'w')

t = int(f.readline().strip())

for i in range(t):
    nk = f.readline().strip().split(' ')
    
    s = "Case #%d: %s\n" % (i+1, res)

    o.write(s)