diff --git a/221129_2.java b/221129_2.java new file mode 100644 index 0000000..ae40c78 --- /dev/null +++ b/221129_2.java @@ -0,0 +1,20 @@ +package baekjoon.main_16928; + +import java.io.BufferedReader; +import java.io.IOException; +import java.io.InputStreamReader; + +public class Main { + + private static int n; + private static int m; + + public static void main(String[] args) throws IOException { + //setup + BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); + String[] s = br.readLine().split(" "); + n = Integer.parseInt(s[0]); + m = Integer.parseInt(s[1]); + + } +}