#C14450. Total Working Days Missed

    ID: 44101 Type: Default 1000ms 256MiB

Total Working Days Missed

Total Working Days Missed

Katie is absent for a certain number of weeks. In each absent week, she misses exactly 5 working days. Given the number of weeks she will be absent, your task is to compute the total number of working days she will miss.

The computation can be expressed in LaTeX as:

\( \text{total days missed} = 5 \times \text{number of missing weeks} \)

For example, if Katie misses 3 weeks, the total working days missed will be \(5 \times 3 = 15\).

inputFormat

The input consists of a single integer n (\(0 \leq n \leq 10^9\)), which represents the number of weeks Katie will be absent.

Input is read from standard input.

outputFormat

Output a single integer representing the total number of working days missed by Katie. The result is given by \(5 \times n\).

Output should be written to standard output.

## sample
3
15