karatejin 2022. 11. 12. 18:05

10998번 문제

public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a, b;		
		
		a = sc.nextInt();
		b = sc.nextInt();
		System.out.println(a * b);
		
		sc.close();

	}

}

 

5
6
30