题目链接:https://pintia.cn/problem-sets/994805260223102976/problems/994805312417021952
思路:
不禁感慨,对于大数,Python是真的强。
不过对于这个题C++的long long 还有Java 的BigInteger(没试过)应该都可以
参考代码
a=int(input())
for i in range(a):
line=input()
nums=line.split()
print("Case #{}: ".format(i+1),end="")
b = int(nums[0])
c = int(nums[1])
d = int(nums[2])
if b+c>d:
print("true")
else:
print("false")