The Hamming distance between two bit strings of the same length is the number of positions in which the strings have different bit values. For example, the Hamming distance between 1110 and 0101 is 3. Write a program that accepts two integers at input and outputs their Hamming distance.