Python Online Compiler
Example: Python program to the sum of two integers with minimum variables
C
C++
C#
Java
Python
PHP
main.py
STDIN
Run
# Python program to the sum of two integers with minimum variables print("Enter two integer values::\n") p, q = int(input()), int(input()) print("\nResult:: ", p, " + ", q, " = ", end="") p = p + q print(p)
5 7
Output
Clear
ADVERTISEMENTS