(UVA) 10188 - Automated Judge Script - Solução
import java.io.*; import java.util.*; class Main { public static void main(String[] args) throws NumberFormatException, IOException { Main processando = new Main(); processando.takeInput(); System.exit(0); } void takeInput() throws NumberFormatException, IOException { String line = ""; StringTokenizer tokenizer = null; BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int run = 0; while ((line = br.readLine()) !...