db.execute('SELECT id FROM base_ch')
text = update.message.text
rows = db.fetchall()
for row in rows:
print(rows[0])
s = str(rows).replace('(','').replace(')','').replace(',','')
print(s)
context.bot.send_message(chat_id=s[0], text=text)