Advertisement
Guest User

Untitled

a guest
Feb 17th, 2020
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. print("Podaj a")
  2. a = (input())
  3. print("Podaj b")
  4. b = (input())
  5.  
  6. print (a + b)
  7.  
  8. #print("Co chcesz teraz zrobić? 1.Dodawanie 2.Odejmowanie 3.Mnożenie 4.Dzielenie 5.Potęgowanie")
  9. #klawiatura = (input())
  10. #if klawiatura == 1:
  11. # print("Wynik dodawania:", a+b)
  12. #elif klawiatura == 2:
  13. # print(a-b)
  14. #elif klawiatura == 3:
  15. # print(a*b)
  16. #elif klawiatura == 4:
  17. # print(a/b)
  18. #elif klawiatura == 5:
  19. # print(a**b)
  20. #else:
  21. # print("Nie ma takiej funkcji")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement