2025-03-03 19:11:28 +08:00

8 lines
117 B
C

#include <stdio.h>
int main() {
int a, b;
scanf("%d %d", &a, &b);
printf("%d\n", a * b);
return 0;
}