#!/usr/bin/python3.8
# Inline comment
"""
         Imports section

"""
def main():
        #input/print
        print("Hello from Python!")

if __name__=="__main__":
        main()

