PROGRAMMING:Find two numbers(1)
Develop a program that you suppose to find two numbers in an array. The two numbers' sum is a constant. The size of the array is 10.
### Input Specification:
Input 10 numbers in the first line. Input a number at the second line to be the constant (the sum of two numbers) .
### Output Specification:
Output 2 numbers each line.
### Sample Input:
```in
81 78 80 67 85 42 86 82 90 79
one hundred and sixty
```
### Sample Output:
Write the corresponding sample output here. For example:
```out
81 79
78 82
```
answer:If there is no answer, please comment
### Input Specification:
Input 10 numbers in the first line. Input a number at the second line to be the constant (the sum of two numbers) .
### Output Specification:
Output 2 numbers each line.
### Sample Input:
```in
81 78 80 67 85 42 86 82 90 79
one hundred and sixty
```
### Sample Output:
Write the corresponding sample output here. For example:
```out
81 79
78 82
```
answer:If there is no answer, please comment