@commands.command()
async def cmd(ctx):
if ctx.message.reference and isinstance(ctx.message.reference.resolved, discord.Message):
await ctx.send(ctx.message.reference.resolved.content)
else:
await ctx.send("You need to reply to message")