본문 바로가기

Projects/백준 문제

백준 10998번 자바 문제

반응형
package bj10998;

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

}
반응형