Skip to content

Commit b4fe944

Browse files
committed
feat(codeforces): add solution template for p2190A
1 parent 24861e7 commit b4fe944

File tree

1 file changed

+40
-0
lines changed
  • src/main/java/com/lzw/solutions/codeforces/p2190A

1 file changed

+40
-0
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
package com.lzw.solutions.codeforces.p2190A;
2+
3+
import java.io.BufferedReader;
4+
import java.io.IOException;
5+
import java.io.InputStreamReader;
6+
import java.io.PrintWriter;
7+
import java.util.HashSet;
8+
import java.util.Set;
9+
import java.util.StringTokenizer;
10+
11+
public class Main {
12+
13+
BufferedReader in;
14+
PrintWriter out;
15+
16+
Main() {
17+
in = new BufferedReader(new InputStreamReader(System.in));
18+
out = new PrintWriter(System.out);
19+
}
20+
21+
void solve() throws IOException {
22+
23+
}
24+
25+
void close() throws IOException {
26+
if (in != null) {
27+
in.close();
28+
}
29+
if (out != null) {
30+
out.flush();
31+
out.close();
32+
}
33+
}
34+
35+
public static void main(String[] args) throws Exception {
36+
Main main = new Main();
37+
main.solve();
38+
main.close();
39+
}
40+
}

0 commit comments

Comments
 (0)