#! C:/Users/Administrator/AppData/Local/Programs/Python/Python38/python.exe

#import cgitb
#cgitb.enable()

"""
print("Content-Type: text/plain;charset=utf-8")
print()

print ('hello testing')
"""


def main():
    try:
        print ('hello testing from main')
    except:
        print ('not working')


#if __name__ == '__main__':
main()
