f=open("stdin.txt","r") line=f.readline().strip() l=line.split(" ") a=float(l[0]) b=float(l[1]) s=0 s=a+b g=open("stdout.txt","w") g.write(str(s))