#include <bits/stdc++.h> using namespace std; int main() { long long n; cin >> n; cout << fixed << setprecision(0) << (n < 9 ? 0 : (n == 9 ? 8 : (n == 10 ? 72 : 72 * pow(10, n - 10)))) << endl; return 0; }
评测记录