def main(): print("hello world") x = 50 for i in range(x): print(i) if __name__ == "__main__": main()