We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f34dfe0 commit 18d65f5Copy full SHA for 18d65f5
1 file changed
정건우/5주차/BOJ_B5_22193_Multiply.java
@@ -0,0 +1,20 @@
1
+//https://www.acmicpc.net/problem/22193
2
+import java.math.BigInteger;
3
+import java.util.Scanner;
4
+
5
+public class BOJ_B5_22193_Multiply {
6
7
+ public static void main(String[] args) {
8
+ Scanner scann = new Scanner(System.in);
9
10
+ int N = scann.nextInt();
11
+ int M = scann.nextInt();
12
13
+ BigInteger A = scann.nextBigInteger();
14
+ BigInteger B = scann.nextBigInteger();
15
16
+ System.out.println(A.multiply(B));
17
18
+ }
19
20
+}
0 commit comments