Wrong-answer for TC #2

My code is failing for TC #2. Please take a look :

@Sriram-Rajan-10104264111174086 You are omitting the leading zeros.
Consider a test case:
1
0000 0011

Expected Output:
0011

Your Output:
11

Also there is no need to perform padding as it is already given that the length of both the string are same.

Hope this helps :slightly_smiling_face: