Toán tử cơ bản

View as PDF

Points: 10 (p) Time limit: 2.0s Memory limit: 256M Input: stdin Output: stdout

Bài tập này giúp chúng ta luyện tập về đọc dữ liệu vào kiểu số nguyên và làm quen với các toán tử cơ bản.

Input Specification

Số nguyên dương \(n\) được ghi trên một dòng duy nhất.

Output Specification

Lần lượt in ra kết quả của các phép tính dưới đây, mỗi kết quả trên một dòng:

  • \(a + 1\)
  • \(a - 2\)
  • \(a \times 3\)
  • \(a\) mod \(4\)
  • \(a\) div \(5\)

Constraints

\(3 \leq n \leq 10^6\)

Input Sample

16

Output Sample

17
14
48
0
3

Comments

There are no comments at the moment.