A × B
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