Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
93970 汤弘毅 02长方形的面积 C Accepted 0 MS 200 KB 151 2024-10-19 16:44:43

Tests(10/10):


Code:

//CRTL+N(NEW),CRTL+S(SAVE) # include <stdio.h> /* */ int main(){ int a,b; scanf("%d%d",&a,&b); int res = a*b; printf("%d",res); }