其他分享
首页 > 其他分享> > 1086 就不告诉你 (15 point(s))

1086 就不告诉你 (15 point(s))

作者:互联网

#include <bits/stdc++.h>
using namespace std;

int main() {
	int a, b;
	string ans;
	cin >> a >> b;
	ans = to_string(a * b);
	reverse(begin(ans), end(ans));
	cout << stoi(ans);
}

标签:1086,reverse,15,cout,point,int,ans,string
来源: https://www.cnblogs.com/Atl212/p/15313956.html