def main(): N = int(input()) if N % 3 == 0: print(0) elif N % 3 == 1: print(2) else: print(1) if __name__ == '__main__': main()