- Time limit: 1.00 s
- Memory limit: 512 MB
You are given a list of integers, . Your task is to increment each of them by one.
Input
The first line contains a single integer : the number of integers.
After this there are lines each containing one integer .
Output
Your program should output lines each containing one integer + 1.
Constraints
Example
Input:
3 7 23 42
Output:
8 24 43