#include int main(void) { int N; scanf("%d", &N); if(N % 3 == 0) { printf("%d", 0); } else if(N % 3 == 1) { printf("%d", 2); } else { printf("%d", 1); } return 0; }