[문제요약] a + b 또는 a * b 를 구하는 문제이다.
- 첫 줄에는 a 가, - 두 번째 줄에는 '+' 혹은 '*' 가 - 세 번째 줄에는 b 가 주어진다.a, b 는 10 의 거듭제곱이며 각 숫자는 100 자리를 넘지 않는다.
The biggest noise often occurs when the students are idle, so teachers will give them tasks with a lot of work to calm them down. In one type of such task, the student must calculate the result of an arithmetic operation on two large numbers. The arithmetic operations we will consider are adding and multiplication. The operands will be powers of 10 with no more than 100 digits.
Write a program that calculates the result of the operation.
입력 1000 * 100 출력 100000 입력 10000 + 10 출력 10010 입력 10 + 1000 출력 1010 입력 1 * 1000 출력 1000
출처: coci 2008/2009 contest6 1/6