2025-06-15 17:49:30 +09:00

9 lines
112 B
C

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