@bot.event
async def on_message(message):
if message.content.startswith("?угадайка"): #command to start quessing game
channel = message.channel
await channel.send("Угадайте число от 0 до 10, написав число в этом канале!") #message that tells about the start of the game
number1 = random.randint(1,10) #picking random number from 1 - 10 and printing it
print(number1)