#include <iostream>
#include <random>

int main() {
    std::random_device seed;
    std::mt19937 rand(seed());
    std::cout << rand() % 2 + 1 << '\n';
}