文章
1
粉丝
77
获赞
0
访问
586
#include<bits/stdc++.h> using namespace std;
int main() { int n,m; cin >> n >> m; int tmp = n; int ans = 0; while(m--) { ans += n; n = n*10 + tmp; } cout << ans << endl; }
登录后发布评论
暂无评论,来抢沙发