PAT 1065. A+B and C (64bit) (20)

题目地址: http://www.patest.cn/contests/pat-a-practise/1065

偷懒了

1 T = input()

2 for i in xrange(1, T + 1): 

3     a, b, c = map(long, raw_input().split())

4     if a + b > c:

5         print "Case #"+str(i)+": true"

6     else:

7         print "Case #"+str(i)+": false"

 

你可能感兴趣的:(bit)