Identify the function call statement in the following snippet.
if __name__ =='__main__':
main(sys.argv[1:])
What is the output of the following snippet?
T=1
while T:
print(True)
break