일상

10998 : A * B

STUDYING,,, 2021. 7. 23. 19:58
import java.util.Scanner;

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);

	}
}

'일상' 카테고리의 다른 글

9498 : 시험 성적  (0) 2021.07.23
1330 : 두 수 비교하기  (0) 2021.07.23
10869 : 사칙연산  (0) 2021.07.23
10718 : We love kriii  (0) 2021.07.23
10430 : 나머지  (0) 2021.07.23