1 from decimal import Decimal,getcontext 2 getcontext().prec=101#设置浮点数的精度为101位 3 a=Decimal(input()) 4 b=Decimal(input()) 5 print(str(a+b).rstrip('0'))#去掉右边多余的0