fork download
  1. """
  2. liczba = int(input())
  3. if liczba%2 == 0:
  4. print("tak")
  5. else:
  6. print("nie")
  7.  
  8. a = int(input())
  9. b = int(input())
  10. if a%b == 0:
  11. print("a podzielne przez b")
  12. else:
  13. print("nie jest")
  14.  
  15. x = int(input())
  16. w = int(input())
  17. if w == 2:
  18. print(x*x)
  19. elif w == 3:
  20. print(x*x*x)
  21. elif w == 4:
  22. print(x*x*x*x)
  23. elif w == 5:
  24. print(x*x*x*x*x)
  25. elif w == 6:
  26. print(x*x*x*x*x*x)
  27. elif w == 7:
  28. print(x*x*x*x*x*x*x)
  29.  
  30. licz = int(input())
  31. a = int(input())
  32. b = int(input())
  33. if licz>=a and licz<=b:
  34. print("jest")
  35. else:
  36. print("nie jest")
  37.  
  38. a = int(input())
  39. b = int(input())
  40. if a>b:
  41. print("a wieksze")
  42. elif a<b:
  43. print("b wieksze")
  44. else:
  45. print("sa rowne")
  46.  
  47. a = int(input())
  48. b = int(input())
  49. c = int(input())
  50. if a>b and a>c:
  51. print("a najwieksze")
  52. elif b>a and b>c:
  53. print("b anjwieksze")
  54. elif c>a and c>b:
  55. print("c najwieksze")
  56. else:
  57. print("sa rowne")
  58. """
  59.  
  60.  
  61.  
  62.  
Success #stdin #stdout 0.03s 63188KB
stdin
Standard input is empty
stdout
Standard output is empty