Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
4487 郑元泰 02长方形的面积 C++ Accepted 0 MS 252 KB 127 2024-08-20 20:24:21

Tests(10/10):


Code:

#include<iostream> using namespace std; int main(){ int a=5,b=6; cin>>a>>b; cout<<a*b<<endl; return 0; }