0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 05:45:25 +00:00

CF25B Phone numbers

R40341264
This commit is contained in:
Baoshuo Ren 2020-10-23 16:22:43 +08:00 committed by Baoshuo Ren
parent 3ece123c57
commit f91f4de358
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

20
problem/CF25B/CF25B.cpp Normal file
View File

@ -0,0 +1,20 @@
#include <bits/stdc++.h>
using namespace std;
int main() {
int n;
string s;
cin >> n >> s;
for (int i = 0; i < n; i++) {
cout << s[i];
if (i % 2 && n % 2 && i < n - 4 || i % 2 && !(n % 2) && i != n - 1) {
cout << '-';
}
if (i == n - 4 && n % 2) {
cout << '-' << s[n - 3] << s[n - 2] << s[n - 1];
break;
}
}
return 0;
}