Editorial
Read $A$ and $B$ from input.
- If you use Python, just multiply them.
- If you use C++, you need to write your own BigInteger to multiply big numbers, because standard data types do not support such operations. You will get WA because of overflow.
Author's Solution
GNU C++17