changed filenames
This commit is contained in:
20
templates/java/ConsoleIOSimple.java
Normal file
20
templates/java/ConsoleIOSimple.java
Normal file
@@ -0,0 +1,20 @@
|
||||
// General imports
|
||||
|
||||
import java.util.*;
|
||||
import java.io.*;
|
||||
import java.math.*;
|
||||
|
||||
public class ConsoleIOSimple {
|
||||
public static void main(String[] args) {
|
||||
|
||||
Scanner sc = new Scanner(System.in);
|
||||
|
||||
// Write code here
|
||||
|
||||
int a = sc.nextInt();
|
||||
System.out.println(a);
|
||||
|
||||
sc.close();
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user