Description
Create a Python function called binaryAdd( ) that takes in two strings of binary expansions, aand b, and returns the sum of the binary expansions as a string. For example,
>> binaryAdd("10101", "101011")
>> '1000000'






