#Include <iostream> using namespace std; int main() { int a,b,c; cout<<"请输入两个整数:"; cin>>a>>b; cout<<"请输入这两个整数的乘积:"; cin>>c; if(c == a*b) cout<<"right"; else cout<<"wrong"; return 0; }