#include using namespace std; void fast_io() { ios::sync_with_stdio(false); std::cin.tie(nullptr); } int main() { fast_io(); int n; cin >> n; if (n % 3 == 0) { cout << 0 << endl; } else if (n % 3 == 1) { cout << 2 << endl; } else { cout << 1 << endl; } }