#!/usr/bin/python3.8
"""
	Imports section
""" 
def main():
	#input/print
	print("Hello from Python!")
		
if _name_=="_main_":
	main()
