#ABC474A. 非 X / Not X

非 X / Not X

Problem Statement

You are given an integer XX between 11 and 33, inclusive.

Output an integer between 11 and 33, inclusive, that is different from XX.

Constraints

  • XX is an integer between 11 and 33, inclusive.

Input

The input is given from Standard Input in the following format:

  • XX

Output

Output an integer between 11 and 33, inclusive, that is different from XX.

If there are multiple integers satisfying the condition, any of them will be accepted.

1
2

The integers between 11 and 33, inclusive, that are different from X(=1)X(=1) are 22 and 33.

Thus, outputing either 22 or 33 will be accepted.

2
3
3
2