#include <stdio.h> int main() { int a,b; scanf("%d %d",&a,&b); printf("%d",a*b); }
每句之后一定要加“;”,好多次都忘掉。