#include <stdio.h>
int main()
{
int A, B;
scanf("%d\n%d", &A, &B);
printf("%d\n", A * (B % 10));
printf("%d\n", A * ((B % 100)/10));
printf("%d\n", A * (B / 100));
printf("%d", A*B);
}
'🧐 Algorithm' 카테고리의 다른 글
[백준 9498번 C/C언어] 시험 성적 (0) | 2021.01.22 |
---|---|
[백준 1330번 C/C언어] 두 수 비교하기 (0) | 2021.01.22 |
[백준 10869번 C/C언어] 사칙연산 출력 (0) | 2021.01.22 |
[백준 10430번 C/C언어] 나머지 출력 (0) | 2021.01.22 |
[백준 10171번&10172번 C/C언어] 고양이&개 출력 (0) | 2021.01.22 |