+This program simply takes a binary stream of numbers from STDIN and outputs them.
11
+In order to do this, it simply uses fread to grab an array of numbers from the stream until the stream ends. During this, it uses a for loop to print every number from said array.