백준 풀떄 기본 함수
2024. 2. 21. 15:19ㆍ개발 공부/백준
import java.util.*;
public class Main {
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);
}
}
백준 풀떄 이거 복사 붙어 넣기하자!!