Read n integers, print binary representation of each (without 0b prefix).
Write a complete program: read the input with input() and print the result with print().
input()
print()
Input
3 5 10 255
Output
101 1010 11111111