File tree Expand file tree Collapse file tree 2 files changed +40
-0
lines changed
src/main/java/com/lzw/solutions/codeforces Expand file tree Collapse file tree 2 files changed +40
-0
lines changed Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments