summaryrefslogtreecommitdiff
path: root/2011/qual/b/b.py
blob: f9f028a100b7b0b4d85030cade0f946f8f53adfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
f = open('1.in', 'r')
o = open('1.out', 'w')

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

for t in xrange(T):
    _n = f.readline().strip().split(' ')
    el = map(int, f.readline().strip().split(' '))
    
    
    res = el
    s = "Case #%d: %s\n" % (t+1, res)
    print s
    #o.write(s)

f.close()
o.close()