import telebot

TOKEN = "8938121006:AAEZ0-4JysKnciX81QMMlK_3MlH_Xb55wGs"

bot = telebot.TeleBot(TOKEN)

@bot.message_handler(commands=['start'])
def start(message):
    bot.reply_to(message, "سلام 👋\nربات روشنه.")

@bot.message_handler(func=lambda message: True)
def echo(message):
    bot.reply_to(message, message.text)

print("ربات روشن شد...")
bot.infinity_polling()