#include <iostream>
using namespace std;

int main() {
    int a[4] = {1, 2, 3, 0};

    printf("%d", a[1 + 2[a]]);
    return 0;
}