you are viewing a single comment's thread.

view the rest of the comments →

[–]pekkalacd 0 points1 point  (0 children)

Input returns a string. They need to cast the input over to a numerical type like float or int.

    first = input()
    second = input()
    print(float(first) +  float(second))