#CODE = #B033
# addition of n and e by taking input from the user
n = float(input('Enter first number : '))
e = float(input('Enter Second number : '))
# take one variable (t) and store the result of n+e.
t = n + e
print(f"sum of {n} and {e} is {t:.2f}")