It prints colored 0s and 1s all over your terminal window. Nothing else.
Line 20 (the 'trap sig_int_trap SIGINT') disables Ctrl-C. You want to comment this out.
It does not disable it, it catches it and restores the terminal cursor's visibility (originally it reseted everything, but you can just work on, and the colors will scroll off the screen).
... but of course, maybe you enjoy random color font. :p
Thank you for the correction.
Based on the previous comment, I assumed the trap function was doing something evil without completely reading the script.