#!/usr/bin/python
import os
 
# Path to Message3.exe (same directory as this script)
exe_path = "Message3.exe"
 
# Run the executable
try:
    os.system(f"{exe_path}")
    print("Content-Type: text/html\n")
    print("<html><body><h1>Message3.exe executed successfully!</h1></body></html>")
except Exception as e:
    print("Content-Type: text/html\n")
    print(f"<html><body><h1>Error executing Message3.exe:</h1><p>{str(e)}</p></body></html>")

