Hehe
#include <iostream>
using namespace std;
int main() {
int n;
cin>>n;
string colors[] {"紅", "橙", "黃", "綠", "藍", "靛", "紫"};
int i=(n-1)%7;
cout<<colors[i]<<endl;
return 0;
}
don't send the small ans