fork download
  1. num1 = int(input("enter first no"))
  2. num2 = int(input("enter second no"))
  3. num = num1+num2
  4. print(num)
  5.  
Success #stdin #stdout 0.01s 7296KB
stdin
3
2
stdout
enter first noenter second no5