0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-10 06:18:48 +00:00

P2368 EXCEEDED WARNING B

R41038525
This commit is contained in:
Baoshuo Ren 2020-11-01 20:42:34 +08:00 committed by Baoshuo Ren
parent a08205e90c
commit 8136c6e776
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

22
problem/P2368/P2368.cpp Normal file
View File

@ -0,0 +1,22 @@
#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;
}