# Pastebin qIMVge9g import ctypes lib = ctypes.CDLL(None) add = lib.printf add.argtypes = (ctypes.c_char_p,) add.restype = ctypes.c_int print(add(b"<%d> <%d>\n", 3, 5))