a and b story 2
Background
Special for beginners, ^_^
Description
给定两个数(可能有前导零),求和,差(可能为负),积,商(向下取整)。
Format
Input
Two integers x and y, satisfying 0 <= x, y <= 10的200次方.y保证不为0
Output
4行,每行一个数,分别表示和,差,积,商。
Sample 1
Input
79772
205
Output
79977
79567
16353260
389
Limitation
1s, 102400KiB for each test case.
Hint
cjt