mycode/Baekjoon/c/2588.c
notalentprogrammer f00b19f981 20250506 baekjoon
2025-05-06 22:00:09 +09:00

8 lines
159 B
C
Executable File

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