import std; void main () { int N = readln.split[0].to!(int); if (N % 3 == 1) { writeln(2); } else if (N % 3 == 2) { writeln(1); } else { writeln(0); } }