I would like to pack a variable and also multiply it .But i can't did it properly can anyone help me to fix it
from pwn import *
p= process (./format2)
target = "deadbeef"
payload = p32("A"*64)
payload += p32(target)
p.sendline(payload) p.interactive()