Skip to content

Commit 23ee397

Browse files
committed
feat(codeforces): add solutions template for p2189A and p2189B
1 parent f931d34 commit 23ee397

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package com.lzw.solutions.codeforces.p2189A;
2+
3+
import java.io.BufferedReader;
4+
import java.io.IOException;
5+
import java.io.InputStreamReader;
6+
import java.io.PrintWriter;
7+
8+
public class Main {
9+
private static final BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
10+
private static final PrintWriter out = new PrintWriter(System.out, true);
11+
12+
private static void solve() throws IOException {
13+
// your code here
14+
}
15+
16+
public static void main(String[] args) throws IOException {
17+
solve();
18+
out.close();
19+
}
20+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package com.lzw.solutions.codeforces.p2189B;
2+
3+
import java.io.BufferedReader;
4+
import java.io.IOException;
5+
import java.io.InputStreamReader;
6+
import java.io.PrintWriter;
7+
8+
public class Main {
9+
private static final BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
10+
private static final PrintWriter out = new PrintWriter(System.out, true);
11+
12+
private static void solve() throws IOException {
13+
// your code here
14+
}
15+
16+
public static void main(String[] args) throws IOException {
17+
solve();
18+
out.close();
19+
}
20+
}

0 commit comments

Comments
 (0)