#include <iostream> using namespace std; int main() { int i,s,n; cin>>n; s=0; do { cin>>i; s=s+i; } while (s<n); return 0; }