Quizes
Problems
Courses
Sign
Register
Main
/
Courses
/
Basics of Python
/
VARIABLES. OUTPUT FORMATS
VARIABLES. OUTPUT FORMATS
№ 4
/6
Variables 3
Read Theory
Task
Correct errors in the program so that the program outputs information as indicated in the example.
Only positive integers are input
Example
Input
9 5
Output
9-5=4
Python
1
a, b = input()
2
c = a - b
3
print("a","-b",=,c)
Your last submission is saved in the editor window.
Results:
All results: