문제 출처 https://www.acmicpc.net/problem/2739
내가 작성한 코드
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int i;
for(i=1; i<10; i++) {
System.out.println(n + " * " + i + " = " + n*i);
}
}
}