Every year, the University of Zagreb organizes a student team competition in informatics. Each team consists of three students.
Traditionally, the best competitors from the university are girls, and they outnumber boys significantly. This year, boys have raised their voice and a rule was made that each team must consist of exactly one boy and two girls.
To make competitors' lives a little more difficult, the dean of the university has decided to send
Given the number of female competitors
For example, if
Input Specification
The first and only line of input contains three integers separated by single spaces:
Output Specification
The first and only line of output must contain only one number: the maximum number of teams which can be formed.
Sample Input 1
6 3 2
Sample Output 1
2
Sample Input 2
2 1 1
Sample Output 2
0
Sample Input 3
6 10 3
Sample Output 3
3
Comments