Write a function that takes a byte, and prints it in binary value without a newline at the end.
func PrintBits(octe byte) { }
Example of output:
If 2 is passed to the function PrintBits, it will print "00000010".
PrintBits