#a) for i in range(0, 10, 2): print(i) def is_true(a, b) : if a and b: return 1 if not a and not b: return 0 def hovedprogram(): b = is_true(True, False) print(b) hovedprogram()