CSES - Aalto Competitive Programming 2024 - wk8 - Homework Python - Adding ones
  • Time limit: 1.00 s
  • Memory limit: 512 MB

You are given a list of nn integers, a1,a2,,ana_1, a_2, \dots, a_n. Your task is to increment each of them by one.

Input

The first line contains a single integer nn: the number of integers.

After this there are nn lines each containing one integer aia_i.

Output

Your program should output nn lines each containing one integer aia_i + 1.

Constraints

  • 2n1062 \leq n \leq 10^6
  • 1ai1091 \leq a_i \leq 10^9

Example

Input:

3
7
23
42

Output:

8
24
43