import telebot
import config
bot = telebot.TeleBot(config.TOKEN)
a = input()
print(a)
if a == 1:
def lalala(message):
bot.send_message(788878969, 'Привет')
bot.polling(none_stop=True)
</>
if a == 1:
def lalala(message):
...import telebot
import config
a = 'Привет'
bot = telebot.TeleBot(config.TOKEN)
@bot.message_handler(content_types=['text'])
def lalala(message):
bot.send_message(message.chat.id, a)
bot.polling(none_stop=True)