3 条题解

  • 2
    @ 2026-2-13 10:12:53

    #include<bits/stdc++.h> using namespace std; int main(){ int a,b; cin>>a>>b; cout<<a*b; return 0; }

    • @ 2026-2-13 10:14:00

      格式有点问题但包对的

  • 1
    @ 2026-6-17 17:38:25
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
    	int a,b;
    	cin>>a>>b;
    	cout<<a*b;
    	return 0;
    } 
    
    • -7
      @ 2026-2-13 10:07:15
      include<bits/stdc++.h>
      using namespace std;
      int main() {
          int x, y;
          cin >> x >> y;
          cout << x * y << endl;
          return 0;
      }
      
      
      • 1

      信息

      ID
      80
      时间
      1000ms
      内存
      256MiB
      难度
      1
      标签
      递交数
      54
      已通过
      32
      上传者