#include<iostream>
#include<string>
#include<algorithm>
using namespace std;
int main()
{
int a, b;
cin >> a >> b;
int end = a * b;
string rev;
rev = to_string(end);
reverse(rev.begin(), rev.end());
cout << stoi(rev) << endl;
return 0;
}
PAT乙级1086:就不告诉你
最新推荐文章于 2023-10-26 12:34:49 发布