#!/usr/bin/python3.8
# Inline comment
"""
 Multi 
 line 
 comment
 """
"""
	Imports section
"""
def main():
	#input/print
	print("Hello from Python!")
	

if __name__=="__main__":
	main()
