A1393.[COCI-2008_2009-contest6]#2 BUKA

普及/提高-

COCI

通过率:0%

时间限制:1.00s

内存限制:128MB

题目描述

Quite often there is substantial noise in the classroom during class. Instead of paying attention to what the teacher is saying, the students rather discuss the economic crisis or Croatia's joining the European Union.
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.

输入格式

The first line contains a positive integer A, the first operand.
The second line either the character '+' or '*', representing addition or multiplication.
The third line contains a positive integer B, the second operant.
The integers A and B will be powers of 10 and consist of at most 100 digits.

输出格式

Output the result of the operation.

输入输出样例

  • 输入#1

    1000 
    * 
    100

    输出#1

    100000
  • 输入#2

    10000 
    + 
    10 

    输出#2

    10010
  • 输入#3

    10 
    + 
    1000 

    输出#3

    1010

说明/提示

首页