i want to add unix timestamp in the giveaway time like in this image
here is the code:
@client.command()
async def giveaway(ctx, days:int, hours:int, minutes:int, seconds:int, prize:str):
time = days + hours + minutes + seconds
embed = discord.Embed(title=prize, description=f"time: <t:{time}:R>")
await ctx.send(embed=embed, delete_after=time)
endembed = discord.Embed(title=f"you have won {prize}", description="The time has ended")
await ctx.send(embed=endembed)
when I run the code it shows me this image
days, hours...argument(s).