Dec-09-2021, 06:42 PM
(This post was last modified: Dec-09-2021, 08:47 PM by Yoriz.
Edit Reason: Added code tags
)
1 2 3 4 5 6 |
#Addition print ( "Hello User, Eneter numbers to add " ) num1 = float ( input ( "Eneter first numner, " )) num2 = float ( input ( "Eneter second numner, " )) x = num1 + num2 print (x) |
Thanks.