import java.util.*;
public class Main{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
System.out.println(a*b);
}
}
'Studying JAVA > 백준' 카테고리의 다른 글
[2단계]사칙연산 도전하기-10869번 사칙연산 (0) | 2019.02.19 |
---|---|
[2단계]사칙연산 도전하기-1008번 A/B (0) | 2019.02.19 |
[2단계]사칙연산 도전하기-1001번 A-B (0) | 2019.02.19 |
[2단계]사칙연산 도전하기-1000번 A+B (0) | 2019.02.19 |
[1단계]입출력받아보기-11719번 그대로 출력하기2 (0) | 2019.02.19 |