fork download
  1. num1 = int(input("enter first no"))
  2. num2 = int(input("enter second no"))
  3. num3 = int(input("enter third no"))
  4. num1 = num1+num2
  5. num2 = num2+num3
  6.  
  7. print("first no- ", num1, " second no - ", num2)
  8.  
Success #stdin #stdout 0.1s 14172KB
stdin
25
3
4


stdout
enter first noenter second noenter third nofirst no-  28      second no -  7