const Telegraf = require('telegraf');
const bot = new Telegraf(...);
bot.command('start', (ctx) => {
ctx.reply("Привет, хочешь пообщаться?")
bot.hears('Да', (ctx) => ctx.reply('Классно, слушай, а ты мальчик или девочка? Да/Нет'))
bot.hears('Да', (ctx) => ctx.reply('Да/Нет'))
})
bot.launch();