大学第三周作业

#include <stdio.h>
int main()
{
  int A,B,C;
  scanf("%d %d",&A,&B);
  C=A*B;
  printf("%d",C);
  return 0;
}

原文地址:https://www.cnblogs.com/archeralter/p/7701390.html