Welcome random people
This is a site for USACO starter templates. This site has also been optimized to save bandwith on slow networks.
You'll need eclipse.
Downloads
Eclipse windows 32 bit
/*
TASK:
ID:
LANG:JAVA
PROG:
*/
//MINIMAL CODE
import java.io.*;
import java.util.*;
public class example {
public static void main(String[] args) throws IOException {
BufferedReader f=new BufferedReader(new FileReader("project.in"));
PrintWriter pw=new PrintWriter(new BufferedWriter(new FileWriter("project.out")));
pw.close();
f.close();
}
}