a,b,c=map(float,input().split())
print("{:0.2f} {:0.2f}".format(round(a+b+c,2),round((a+b+c)/3,2)))
震惊
- 我看大神 直接就sum(list)了,sum(list)/len(list)了,太方便了吧。
- %2f的方法 我还是没太掌握
a,b,c=map(float,input().split())
print("{:0.2f} {:0.2f}".format(round(a+b+c,2),round((a+b+c)/3,2)))
震惊