PROGRAMMING:Kill the president of CPA
Every national day, our CPA Association will hold program design training, mainly to provide a platform for compatriots who love code. This year's epidemic is particularly fierce, but it still hasn't stopped our passion for code. During the national day, we were dizzy because of the code knocking all day. In order to enrich our code life, our president invented a game( If you lose, you have to treat.
There are only 2 players in the game. Everyone has a lucky value. At the beginning, the lucky value of the president is 0, and your value is 1( Because the president is the boss, so let me. After you start, the president starts first. The President uses a move to move the universe. At this time, your lucky value will be added to the president's lucky value, and the president's lucky value will be updated immediately( The lucky value of the president will add up to your value). Of course, you are not willing to be outdone. When it comes to you, you can easily graft on others, and the lucky value of the president will be plundered by you. Your lucky number will also be updated (your lucky number will add up to a longer number). When one of them has a value greater than or equal to a given value, the winner. It is required to output the name and lucky value of the winning party( The name of the president is "Jiangcheng" by default
###Input format:
Enter a string to indicate your name, and then enter a number n to indicate who will win first( The string does not contain spaces and the length does not exceed 10, n > 1, n is in the range of long integer);
###Output format:
Output the winning name and lucky value.
###Input example:
Here is a set of inputs. For example:
```in
hufuyun 8
```
###Output example:
The corresponding output is given here. For example:
```out
Jiangcheng
eight
```
###Output example explanation:
```
At the beginning, the president's lucky value is 0, and hufuyun's lucky value is 1
After the first round, the chairman's lucky value is 1 (0 + 1), and hufuyun's lucky value is 2 (1 + 1)
After the second round, the lucky value of the president is 3 (1 + 2), and that of hufuyun is 5 (3 + 2)
After the third round, the lucky value of the president is 8 (3 + 5). Because it is equal to the given 8, the English name and lucky value of the president are output.
```
answer:If there is no answer, please comment
There are only 2 players in the game. Everyone has a lucky value. At the beginning, the lucky value of the president is 0, and your value is 1( Because the president is the boss, so let me. After you start, the president starts first. The President uses a move to move the universe. At this time, your lucky value will be added to the president's lucky value, and the president's lucky value will be updated immediately( The lucky value of the president will add up to your value). Of course, you are not willing to be outdone. When it comes to you, you can easily graft on others, and the lucky value of the president will be plundered by you. Your lucky number will also be updated (your lucky number will add up to a longer number). When one of them has a value greater than or equal to a given value, the winner. It is required to output the name and lucky value of the winning party( The name of the president is "Jiangcheng" by default
###Input format:
Enter a string to indicate your name, and then enter a number n to indicate who will win first( The string does not contain spaces and the length does not exceed 10, n > 1, n is in the range of long integer);
###Output format:
Output the winning name and lucky value.
###Input example:
Here is a set of inputs. For example:
```in
hufuyun 8
```
###Output example:
The corresponding output is given here. For example:
```out
Jiangcheng
eight
```
###Output example explanation:
```
At the beginning, the president's lucky value is 0, and hufuyun's lucky value is 1
After the first round, the chairman's lucky value is 1 (0 + 1), and hufuyun's lucky value is 2 (1 + 1)
After the second round, the lucky value of the president is 3 (1 + 2), and that of hufuyun is 5 (3 + 2)
After the third round, the lucky value of the president is 8 (3 + 5). Because it is equal to the given 8, the English name and lucky value of the president are output.
```
answer:If there is no answer, please comment