#arc069a. [arc069_a]Scc Puzzle
[arc069_a]Scc Puzzle
Problem Statement
Snuke loves puzzles.
Today, he is working on a puzzle using S
- and c
-shaped pieces. In this puzzle, you can combine two c
-shaped pieces into one S
-shaped piece, as shown in the figure below:
Snuke decided to create as many Scc
groups as possible by putting together one S
-shaped piece and two c
-shaped pieces.
Find the maximum number of Scc
groups that can be created when Snuke has S
-shaped pieces and c
-shaped pieces.
Constraints
Input
The input is given from Standard Input in the following format:
Output
Print the answer.
Sample Input 1
1 6
Sample Output 1
2
Two Scc
groups can be created as follows:
- Combine two
c
-shaped pieces into oneS
-shaped piece - Create two
Scc
groups, each from oneS
-shaped piece and twoc
-shaped pieces
Sample Input 2
12345 678901
Sample Output 2
175897