import telebot
bot = telebot.TeleBot('My token')
@bot.message_handler(commands = ['start'])
def start(message):
mess = f'Welcome {message.from_user.first_name} {message.from_user.last_name} !'
bot.send_message(message.chat.bot,mess, parse_mode = 'html')