first commit

This commit is contained in:
Nyagami
2022-12-15 23:51:04 +07:00
commit 87d51fb251
292 changed files with 12623 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
import java.util.Scanner;
import java.io.File;
import java.io.FileNotFoundException;
public class Main{
public static void main(String args[]){
File x = new File("DATA.in");
try{
Scanner sc = new Scanner(x);
while(sc.hasNext()){
System.out.println(sc.nextLine());
}
}catch(FileNotFoundException e){
}
}
}