文章
105
粉丝
69
获赞
117
访问
57.2k
#include<bits/stdc++.h> using namespace std; typedef long long LL; int x, n; LL ans; int main() { cin >> x >> n; LL t = 0; for(int i = 1; i <= n; i ++) { t = (t * 10 + x); ans += t; } cout << ans; return 0; }
登录后发布评论
暂无评论,来抢沙发