Home BOJ 10998 AxB
Post
Cancel

BOJ 10998 AxB

AxB [브론즈 5]


문제 링크

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

풀이

1
2
3
4
5
6
7
8
9
10
11
12
13
#include<iostream>
using namespace std;

int A, B;

int main(void)
{
    cin >> A >> B;

    cout << A * B;

    return 0;
}
This post is licensed under CC BY 4.0 by the author.