Editorial

A*B

Read AA and BB 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++23