mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 11:18:47 +00:00
23 lines
338 B
C++
23 lines
338 B
C++
|
#include<bits/stdc++.h>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
int main() {
|
||
|
int n;
|
||
|
cin >> n;
|
||
|
if(n <= 8) {
|
||
|
cout << 0 << endl;
|
||
|
}
|
||
|
else if(n == 9) {
|
||
|
cout << 8 << endl;
|
||
|
}
|
||
|
else {
|
||
|
cout << 72;
|
||
|
for(int i = 10 ; i < n ; i++) {
|
||
|
cout << 0;
|
||
|
}
|
||
|
cout << endl;
|
||
|
}
|
||
|
return 0;
|
||
|
}
|