import telebot
bot = telebot.TeleBot("API")
@bot.message_handler(commands=['start'])
@bot.message_handler()
def start(message):
if message.text == "привет":
bot.send_message(message.chat.id, "и тебе не хворать")
bot.polling(none_stop=True)