문제https://www.acmicpc.net/problem/1300풀이(1시간29분)import java.io.*;import java.util.*;public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); // n x n 크기의 곱셈표 int k = Integer.parseInt(br.readLine()); // k번째로 작은 수를 찾기 long left =..