Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save keefo/bd1f02045536f162412dbd765a726fc4 to your computer and use it in GitHub Desktop.
Save keefo/bd1f02045536f162412dbd765a726fc4 to your computer and use it in GitHub Desktop.
import java.util.Scanner;
public class Kattis {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
while (sc.hasNext()) {
long X = sc.nextLong();
long Y = sc.nextLong();
if (X > Y) {
System.out.println(Math.abs(X - Y));
} else {
System.out.println(Math.abs(X - Y));
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment