#KEYENCE2020A. Painting

Painting

Score : 100100 points

Problem Statement

We have a grid with HH rows and WW columns, where all the squares are initially white.

You will perform some number of painting operations on the grid. In one operation, you can do one of the following two actions:

  • Choose one row, then paint all the squares in that row black.
  • Choose one column, then paint all the squares in that column black.

At least how many operations do you need in order to have NN or more black squares in the grid? It is guaranteed that, under the conditions in Constraints, having NN or more black squares is always possible by performing some number of operations.

Constraints

  • 1H1001 \leq H \leq 100
  • 1W1001 \leq W \leq 100
  • 1NH×W1 \leq N \leq H \times W
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

HH

WW

NN

Output

Print the minimum number of operations needed.

3
7
10
2

You can have 1414 black squares in the grid by performing the "row" operation twice, on different rows.

14
12
112
8
2
100
200
2