竞赛
考级
有事找大号
YuQing1919
#include<bits/stdc++.h> using namespace std; int main(){ int a , b , c; cin >> a >> b >> c; if(a * b == c) cout << "YES"; else cout << "NO"; return 0; }
DARK SPECTRE
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if(a*b==c){ cout<<"YES"; }else{ cout<<"NO"; } }
菜
逍遥骇好=&
#include <iostream> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if(a*b==c){ cout<<"YES"; }else cout<<"NO"; return 0; }
135****5269
共26条