Type: Default 1000ms 256MiB

计算器

You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.

题目描述

给出两个正整数 a,ba,b ,求 ab,ab,a×ba+b,a-b,a\times b 的值

输入格式

一行两个正整数 a,ba,b

输出格式

输出三行, 第一行输出 a+b=X 其中 XX 表示 aba+b 的值。

第二行输出 a-b=X其中 XX 表示 aba-b 的值。

第三行输出 a*b=X 其中 XX 表示 a×ba×b 的值。

样例 1 输入

6 8

样例 1 输出

6+8=14
6-8=-2
6*8=48

测试点约束

对于 30%30\% 的数据, 0a10,b=00 \le a\le 10,b=0

对于 60%60\% 的数据, b=0b=0

对于 100%100\% 的数据, 0a,b1040\le a,b \le 10^4