#include using namespace std; int a[10] = {2,2,2,2,2,2,2,2,2,1}; int main() { int n; cin >> n; n--; cout << a[n] << endl; return 0; }