PROGRAMMING:Who is the winner
There is a performance evaluation stage for entertainment programs of a TV station. Two artists are arranged to perform each time. Their victory or defeat is decided by the audience and three judges. The rule is: if an artist has a high number of audience votes and is approved by at least one judge, the artist will win; Or the audience votes of the artists are low, but they can win if they are recognized by all the judges. The program guarantees that the number of viewers voting is odd, so there is no tie vote. Please use the program to judge who is the winner.
###Input format:
Input the first line to give two positive integers PA and Pb no more than 1000, which are the audience votes of artist a and artist B respectively. The title guarantees that the two numbers are not equal. Then the second line gives the voting results of the three judges. The number 0 is for a and the number 1 is for B, separated by a space.
###Output format:
Output in the following format:
```
The winner is x: P1 + P2
```
Among them, ` X 'is the letter representing the winner, ` P1' is the number of audience votes the winner gets, and ` P2 'is the number of judges' votes the winner gets.
###Input example:
```in
327 129
1 0 1
```
###Output example:
```out
The winner is a: 327 + 1
```
**Thanks to Li Dong of Software School of Anyang Normal University for improving the test data**< br>
answer:If there is no answer, please comment
###Input format:
Input the first line to give two positive integers PA and Pb no more than 1000, which are the audience votes of artist a and artist B respectively. The title guarantees that the two numbers are not equal. Then the second line gives the voting results of the three judges. The number 0 is for a and the number 1 is for B, separated by a space.
###Output format:
Output in the following format:
```
The winner is x: P1 + P2
```
Among them, ` X 'is the letter representing the winner, ` P1' is the number of audience votes the winner gets, and ` P2 'is the number of judges' votes the winner gets.
###Input example:
```in
327 129
1 0 1
```
###Output example:
```out
The winner is a: 327 + 1
```
**Thanks to Li Dong of Software School of Anyang Normal University for improving the test data**< br>
answer:If there is no answer, please comment