-->
当前位置:首页 > 题库

PROGRAMMING:Four operations 1

Luz5年前 (2021-05-10)题库434
###Task description
This topic requires reading in two integers a and B, and then output their sum, difference, product, quotient and module respectively.
###Input format:
The input has only one line, in which two integers a and B with absolute value no more than 1000 are given. In all the test data given by the title, B is guaranteed not to be 0.
###Output format:
Output all result values in one line, separated by a space.
###Input example:
```in
25 4
```
###Output example:
```out
29 21 100 6 1
```






answer:If there is no answer, please comment