#!/usr/bin/python

from pwn import *

def main():
    # start a process
    p = process("./rop")

    # create payload



    # print the process id
    raw_input(str(p.proc.pid))

    # send the payload to the binary
    p.send(payload)

    # pass interaction bac to the user
    p.interactive()

if __name__ == "__main__":
    main()

