洛谷题单 第五天:2.27(周四) 题目:顺序结构–P5703 代码 #include<stdio.h> int main() { int a,b,ans; scanf("%d%d",&a,&b); ans=a*b; printf("%d",a*b); return 0; }