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