ACM Regional Programming Contest 1998
Problem No.  5  - Multiply Binaries
Executable Program: PROG5.EXE,  PROG5.CLASS
Source Program: PROG5.CPP, PROG5.C, PROG5.JAVA, PROG5.PAS
Input file: IN.TXT   Output file: OUT.TXT
 
Problem Description:
    Write a program that will read  two binary numbers 0 <= u <= 232-1, 0 <= v <= 232-1 multiply them, and write their product.

Input File Format:
    The input file will contain two strings, each one in a separate line, each one made up of 0's and 1's, and being at most 32 chars long.

Output File Format:
    The output file will be one line long, presenting the binary representation of the product of the two input numbers.

Input File Example 1:
0
1101

Output File Example 1:

**********************
* Team ##, Problem 5 *
**********************

0

Input File Example 2:

1101
0111

Output File Example 2:

**********************
* Team ##, Problem 5 *
**********************

01011011