from telegram import Update
from telegram.ext import Application, CommandHandler, ContextTypes

TOKEN = "8854474089:AAHZlrVds9d2HMreMmazhlzD0_0xbFvLaLE"

async def start(update: Update, context: ContextTypes.DEFAULT_TYPE):
    await update.message.reply_text("سلام! ربات روشنه 🎉")

def main():
    app = Application.builder().token(TOKEN).build()
    app.add_handler(CommandHandler("start", start))
    print("ربات روشن شد!")
    app.run_polling()

if __name__ == "__main__":
    main()