def print_hei(): print("HEI!") print("WHILE") a = 5 while a > 0: print_hei() a -= 1 print("FOR") for i in range(2, 15, 3): print(i)