Suppose the seed of any positive integer n is defined as follows:
Seed (n)=n (if n<10), otherwise Seed (n)=seed(s(n)), where s(n) indicates the sum of digits of n.
For example, seed(7)=7, seed(248)=2+4+8= seed(14)= seed (1+4)= seed(5)=5, etc.
How many positive integers n (n < 500) are there such that Seed(n) = 9?