using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace yukicoder { class Program { static void Main(string[] args) { int L = int.Parse(Console.ReadLine()); int[] N = new int[int.Parse(Console.ReadLine())]; string s = Console.ReadLine(); string[] t = s.Split(' '); int c = 0; for(int i = 0;i < N.Length; i++) { N[i] = int.Parse(t[i]); } Array.Sort(N); for(int i =0;i < N.Length; i++) { if(0 <= (L - N[i])) { c++; } L -= N[i]; } Console.WriteLine("{0}", c); //Console.ReadLine(); } } }