Question: Python Program: Write a program that, given two binary numbers represented as strings, prints their sum in binary. The binary strings are comma separated, two

Python Program: 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 output their binary sum, one per line

Test 1

Test Input

110011,1010 

Expected Output

111101 

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!