#include using namespace std; int n; int a[] = { 7, 8, 9, 4, 5, 6, 1, 2, 3, 0 }; int main() { cin >> n; n--; cout << a[n] << endl; return 0; }