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

21 lines
354 B
C++
Raw Normal View History

2021-01-02 07:00:59 +00:00
#include <bits/stdc++.h>
using namespace std;
int m;
string s;
int main() {
cin >> m >> s;
for (int i = 0; i < s.size(); i++) {
if(s[i] == '0') {
continue;
}
if (i != 0) {
cout << '+';
}
cout << s[i] << '*' << m << '^' << s.size() - i - 1;
}
cout << endl;
return 0;
}