for i in range(1, 101): if i % 3 == 0 and i % 5 == 0: print("SiteHost") elif i % 3 == 0: print("Site") elif i % 5 == 0: print("Host") else: print(i)