PROGRAMMING:Chinese Remainder Theorem (1)
Xiao Ming is trapped by a math problem again. I hope you can help him solve the problem. Suppose n% 7 = a, n% 3 = B, n% 5 = C, tell you a, B, C, find the smallest n
###Input format:
Enter multiple groups, three integers a, B, C.
###Output format:
Output n.
###Input example:
Here is a set of inputs. For example:
```in
6 2 3
5 2 1
1 1 3
3 2 2
2 2 2
```
###Output example:
The corresponding output is given here. For example:
```out
eighty-three
twenty-six
forty-three
seventeen
two
```
answer:If there is no answer, please comment
###Input format:
Enter multiple groups, three integers a, B, C.
###Output format:
Output n.
###Input example:
Here is a set of inputs. For example:
```in
6 2 3
5 2 1
1 1 3
3 2 2
2 2 2
```
###Output example:
The corresponding output is given here. For example:
```out
eighty-three
twenty-six
forty-three
seventeen
two
```
answer:If there is no answer, please comment