You are given two binary numbers represented as strings s1 and s2 . Your task is to calculate the product of these two binary numbers and output the result in binary form.
Input
The first line contains the first binary string s1 (0≤∣s1∣≤100).
The second line contains the second binary string s2 (0≤∣s2∣≤100).
Output
Output a single string representing the product of s1 and s2 in binary form.