#include using namespace std; int main(void) { ios::sync_with_stdio(false); cin.tie(0); int n; cin>>n; int condition[4]; for(int i=0; i<4; i++) condition[i]=0; for(int i=0; i>temp; if(temp>=65 && temp<=90) condition[0] = 1; else if(temp>=97 && temp<=122) condition[1] = 1; else if(temp>=48 && temp<=57) condition[2]=1; else condition[3]=1; } int cnt=0; for(int i=0;i<4;i++) { if(condition[i]==0) cnt++; } if(n<6) { int temp = 6-n; if(temp>cnt) cout<