#D1803. Bit Operation II
Bit Operation II
Bit Operation II
Given two non-negative decimal integers and , calculate their AND (logical conjunction), OR (logical disjunction) and XOR (exclusive disjunction) and print them in binary representation of 32 bits.
Constraints
Input
The input is given in the following format.
Output
Print results of AND, OR and XOR in a line respectively.
Example
Input
8 10
Output
00000000000000000000000000001000 00000000000000000000000000001010 00000000000000000000000000000010
inputFormat
Input
The input is given in the following format.
outputFormat
Output
Print results of AND, OR and XOR in a line respectively.
Example
Input
8 10
Output
00000000000000000000000000001000 00000000000000000000000000001010 00000000000000000000000000000010
样例
8 10
00000000000000000000000000001000
00000000000000000000000000001010
00000000000000000000000000000010
</p>