#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; using ll = long long; using Pll = pair; using Pii = pair; constexpr ll MOD = 1000000007; constexpr long double EPS = 1e-10; constexpr int dyx[4][2] = { { 0, 1}, {-1, 0}, {0,-1}, {1, 0} }; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int n; cin >> n; ll p, ans = 1; for(int i=0;i> p; if(p == 0) { ans = 0; break; } ans *= (p-1) % 9 + 1; ans %= 9; } cout << ans << endl; }