File tree Expand file tree Collapse file tree 3 files changed +59
-1
lines changed Expand file tree Collapse file tree 3 files changed +59
-1
lines changed Original file line number Diff line number Diff line change 11
11
* .spj
12
12
* .stderr
13
13
* .stdout
14
- main *
15
14
! main * .cpp
16
15
target
17
16
Cargo.lock
Original file line number Diff line number Diff line change
1
+ import java .io .BufferedReader ;
2
+ import java .io .IOException ;
3
+ import java .io .InputStreamReader ;
4
+ import java .io .PrintWriter ;
5
+
6
+ public class Main {
7
+
8
+ BufferedReader in ;
9
+ PrintWriter out ;
10
+
11
+ Main () {
12
+ in = new BufferedReader (new InputStreamReader (System .in ));
13
+ out = new PrintWriter (System .out );
14
+ }
15
+
16
+ void close () throws IOException {
17
+ in .close ();
18
+ out .flush ();
19
+ out .close ();
20
+ }
21
+
22
+ public static void main (String [] args ) throws IOException {
23
+ Main m = new Main ();
24
+ m .solve ();
25
+ m .close ();
26
+ }
27
+
28
+ void solve () {
29
+
30
+ }
31
+ }
Original file line number Diff line number Diff line change
1
+ import java .io .BufferedReader ;
2
+ import java .io .IOException ;
3
+ import java .io .InputStreamReader ;
4
+ import java .io .PrintWriter ;
5
+
6
+ public class Main {
7
+
8
+ private final BufferedReader in ;
9
+ private final PrintWriter out ;
10
+
11
+ public Main () {
12
+ in = new BufferedReader (new InputStreamReader (System .in ));
13
+ out = new PrintWriter (System .out );
14
+ }
15
+
16
+ private void close () throws IOException {
17
+ in .close ();
18
+ out .close ();
19
+ }
20
+
21
+ public static void main (String [] args ) throws IOException {
22
+ Main m = new Main ();
23
+ m .solve ();
24
+ }
25
+
26
+ private void solve () {
27
+ }
28
+ }
You can’t perform that action at this time.
0 commit comments