The Third Problem

Limits 1s, 512 MB

This is the third problem of today’s contest. In this problem you will be given a list of numbers. You will have to print the third number from the list.

Input

The input will contain a list of numbers on the same line. Each number will be a 32-bit signed integer. There will be at least 3 numbers and at most 10 numbers.

Output

Print the 3rd number.

Sample

InputOutput
1 2 3 4 5
3