Python-100-Days/Jax_code/Day2/Code.py

3 lines
85 B
Python

a = int(input("a = \n"))
b = int(input("b = \n"))
print('%d + %d = %d' % (a, b, a+b))