def func1(message):
markup = telebot.types.ReplyKeyboardMarkup(True)
markup.row('hello too')
send = bot.send_message(admin_id,'hello',reply_markup=markup)
bot.register_next_step_handler(message, func3)
def func3(message):
if message.text == 'hello too':
bot/send_message(chat_id=message.from_user.id, message_id=send.message_id, text = 'hail')
bot.delete_message(chat_id=admin_id, message_id=send.message_id)