fork download
  1. def isyearleap(year):
  2. calc=(year % 4)
  3. if calc==0:
  4. leap=("этот год высокосный")
  5. else:
  6. leap=("Этот год не высокосный")
  7. print (leap)
  8. isyearleap(unt(input("Введите год: ")))
Runtime error #stdin #stdout #stderr 0.03s 126528KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
  File "prog.py", line 2
    calc=(year % 4)
                  ^
IndentationError: expected an indented block