Look at the source code, gives you the arguments that you need to put into the program, and what you must type in the buffer. They are unprintable characters, so use a python script to run it
from PIL import Imagetemp =0im = Image.open('breathe.jpg', 'r')im2 = Image.open('output.png', 'r')pix_val =list(im.getdata())pix_val2 =list(im2.getdata())flag = []pix_list =zip([x for sets in pix_val for x in sets], [x for sets in pix_val2 for x in sets])for i in pix_list:iflen(str(i[1]))<len(str(i[0])): temp *=10elif i[1]==255: temp *=10else: temp = (temp*10)+int(str(i[1])[0])iflen(str(temp))==3: flag.append(chr(temp)) temp =0eliflen(str(temp))==2and temp !=11and temp !=12and temp !=10: flag.append(chr(temp)) temp =0print("".join(flag))