fork download
  1. #stan_konta = input("Podaj stan konta")
  2. #stan_konta = int(stan_konta)
  3. #stan_konta = stan_konta + 500*2
  4.  
  5. #print(stan_konta)
  6.  
  7. x = 9
  8. y = x//2
  9. x = x**(1/2)
  10. print(y)
  11.  
  12. temperature = 15
  13. czy_szczesliwy = False
  14. if temperature > 10 and czy_szczesliwy:
  15. print("wychodzimy")
  16. elif temperature > -10 and czy_szczesliwy:
  17. print("ubierz się ciepło")
  18. else:
  19. print("nie wychodzimy")
Success #stdin #stdout 0.02s 7176KB
stdin
Standard input is empty
stdout
4
nie wychodzimy