본문 바로가기
백준

[10998] A*B

by Jcoder 2017. 4. 21.


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


'백준' 카테고리의 다른 글

[10869] 사칙연산  (0) 2017.04.21
[1008] A/B  (0) 2017.04.21
[11719] 그대로 출력하기 2  (0) 2017.04.21
[11718] 그대로 출력하기  (0) 2017.04.21
[10718] We love kriii  (0) 2017.04.21