编辑代码

 #include<stdio.h>
 int main()
 {
 	int A,B,sum;
	1 <= A,B <= 50000;
 	scanf("%d %d",&A,&B);
 	sum=A*B; 
 	printf("%d\n",sum);
  }