mirror of
https://github.com/Xevion/contest.git
synced 2025-12-06 01:14:36 -06:00
10 lines
236 B
Java
10 lines
236 B
Java
import java.io.File;
|
|
import java.io.FileNotFoundException;
|
|
import java.util.Scanner;
|
|
|
|
public class Tic() {
|
|
public static void main() throws FileNotFoundException
|
|
{
|
|
Scanner in = new Scanner(new File("./tic.dat"));
|
|
}
|
|
} |