fork download
  1. a = int(input("podaj liczbe:"))
  2. b = int(input("podaj druga liczbe:"))
  3. print("wpisałeś",a,"i",b)
  4. print("a+b -=",a+b)
Success #stdin #stdout 0.03s 9812KB
stdin
2
3
stdout
podaj liczbe:podaj druga liczbe:wpisałeś 2 i 3
a+b -= 5