use java
Write a program that, given two binary numbers represented as strings, prints their sum in binary. The binary strings are comma separated, two per line. The final answer should not have any leading zeroes. In case the answer is zero, just print one zero i.e. 0
Input:
Your program should read lines from standard input. Each line
contains two binary strings, separated by a comma and no
spaces.
Output:
For each pair of binary numbers print to standard...