#ENGLISHP30. Exactly Equal

Exactly Equal

Description

Find a subset of N numbers. The sum of the numbers in the subset is exactly equal to T.

Input Format

First line: two positive integers N (N <= 100) and T (T <= 1000).
Second line: N positive integers (<= 1000).

Output Format

One line contains several numbers.

5 10
2 4 5 9 3
2 5 3