fork download
  1. print ("_________________________START_______________________________")
  2.  
  3. A = int(input())
  4. B = int(input())
  5. ## Sprawdzamy operatory matematyczne + - : * / %
  6. print(A + B)
  7. print("Jest to dodawanie")
  8.  
  9.  
  10. print ("_________________________KONIEC______________________________________")
Success #stdin #stdout 0.06s 63212KB
stdin
4
5
stdout
_________________________START_______________________________
9
Jest to dodawanie
_________________________KONIEC______________________________________