#include using namespace std; int main() { int n; cin >> n; if (n % 3 == 0) { cout << 0 << endl; } else if (n % 3 == 1) { cout << 2 << endl; } else { cout << 1 << endl; } return 0; }