郑州网站建设包括哪些/seo综合查询怎么进入网站
输入格式:输入在第一行给出两个不超过 1000 的正整数 A 和 B,其间以空格分隔。输出格式:在一行中倒着输出 A 和 B 的乘积。输入样例:5 7
输出样例:53
#include<iostream>
using namespace std;int main(){int A,B;cin>>A>>B;int N = A*B;int C=0;while(N){C = N%10+10*C;N/=10;
}cout<<C;return 0;
}