#C1698. Subtract One
Subtract One
Subtract One
Given an integer n satisfying \(1 \leq n \leq 5000\), compute and output \(n - 1\).
This is a simple problem designed to test your ability to perform basic arithmetic operations, as well as reading input and writing output.
inputFormat
The input consists of a single integer n provided via standard input (stdin).
\(1 \leq n \leq 5000\)
outputFormat
Output a single integer which is the result of \(n - 1\) printed to standard output (stdout).
## sample3
2