(URI) Tempo de Jogo - Solution
import java.io.*; class Main { public static void process() throws NumberFormatException, IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String line = br.readLine(); String[] hours = line.split(" "); int start = Integer.parseInt(hours[0]); int end = Integer.parseInt(hours[1]); int result = 0; if (start == end) { result = 24; } else i...