El enunciado esta en el siguiente link enunciado
import java.util.Scanner;
/**
* 10055 - Hashmat the brave warrior [http://uva.onlinejudge.org]
*
* @author BreakDark
* @version 1.1 beta
*/
// ACEPTADO!!! xD
public class Main {
public static void main(String[] args) {
Scanner Lee; // para leer los datos de entrada
long numH, numOP; // soldados de Hashman y del opositor
// AQUI INICIA EL PROGRAMA
Lee = new Scanner(System.in);
while (Lee.hasNext()) {
numH = Lee.nextLong();
numOP = Lee.nextLong();
System.out.println(Math.abs(numOP - numH));
}
}
}
|
No comments:
Post a Comment