baekjoon: 27323(직사각형)

강지안·2023년 5월 8일
0

baekjoon

목록 보기
7/186

문제

코드

import java.util.Scanner;

public class q27323 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int A = sc.nextInt();
        int B = sc.nextInt();

        System.out.print(A*B);
    }
}

0개의 댓글