#!/user/bin/python3
"""
	Multiline Comments
"""
# single line comments
def main():
	print ("Hello world!")
	pass

if __name__=="__main__":
	main()
