페이지

10998번: A*B

https://www.acmicpc.net/problem/10998


$O(1)$

곱을 출력


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

댓글 없음 :

댓글 쓰기