Notice
Recent Posts
Recent Comments
Link
«   2025/02   »
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28
Tags
more
Archives
Today
Total
관리 메뉴

main

[백준-2914번/Java] 저작권 본문

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
Comments