if __name__ == '__main__': rok = 2000 czyPrzestepny = (rok % 4 == 0 and rok % 100 != 0 or rok % 400 == 0) print(czyPrzestepny)