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"

 

posted @ 2015-04-13 19:40  ACSeed  Views(128)  Comments(0)    收藏  举报