#C1698. Subtract One

    ID: 44931 Type: Default 1000ms 256MiB

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).

## sample
3
2