Problem A: Vampirish Night

There is a vampire family of N members. Vampires are also known as extreme gourmets. Of course vampires' foods are human blood. However, not all kinds of blood is acceptable for them. Vampires drink blood that K blood types of ones are mixed, and each vampire has his/her favorite amount for each blood type.

You, cook of the family, are looking inside a fridge to prepare dinner. Your first task is to write a program that judges if all family members' dinner can be prepared using blood in the fridge.

Input

Input file consists of a number of data sets. One data set is given in following format:

N K
S1 S2 ... SK
B11 B12 ... B1K
B21 B22 ... B2K
:
BN1 BN2 ... BNK

N and K indicate the number of family members and the number of blood types respectively.

Si is an integer that indicates the amount of blood of the i-th blood type that is in a fridge.

Bij is an integer that indicates the amount of blood of the j-th blood type that the i-th vampire uses.

The end of input is indicated by a case where N = K = 0. You should print nothing for this data set.

Output

For each set, print "Yes" if everyone's dinner can be prepared using blood in a fridge, "No" otherwise (without quotes).

Constraints

Sample Input

2 3
5 4 5
1 2 3
3 2 1
3 5
1 2 3 4 5
0 1 0 1 2
0 1 1 2 2
1 0 3 1 1
0 0

Output for the Sample Input

Yes
No