try: a=list(map(int,input().split())) total=0 for i in range(0,len(a)): total+=a[i] print("%.5f"%total) except: print(0.00000)
20分