#include using namespace std; using ll=long long; const int INF=1e9; int main() { cin.tie(nullptr),cout.tie(nullptr); ios::sync_with_stdio(false); int y,n; cin >> y >> n; vector a(n); for(int i=0; i> a[i]; y-=a[i]; if(y<0){ cout << "red" << endl; return 0; } } cout << y << endl; }