#!/usr/bin/env python3 import sys def main(): N = int(input()) print(1 if N % 2 else 2) if __name__ == '__main__': main()