PRB1: Plus 1 // Beginner

 

For her math homework, Alice is given problems that ask her to add 1 to the numbers she is given. Unfortunately (very unfortunately), Alice does not know how to add.

Help Alice by writing a program that takes in one number from the input, adds 1 to it, and outputs the result.

Input Format

The input contains one and only one integer: .
(Note: We do not mention the number of test cases since this problem only has one test case).

Sample Input

2

Output Format

Output a single integer, .

Sample Output

3

Show Hints


You must be logged in to submit a solution.