Create an account to earn badges and save your progress.
This code adds two numbers (5 and 3) using the + operator.x = 5; y = 3; result = x + y; print(result)
Point:
How to Add 7 and 5 using the + operator and print the result.