Algorithm
[백준-2914번/Java] 저작권
1984
2022. 11. 9. 19:00
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int A = sc.nextInt();
int I = sc.nextInt();
System.out.println(A * (I - 1) + 1);
}
}
728x90