Skip to content

Instantly share code, notes, and snippets.

@folivetti
Created March 5, 2017 16:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save folivetti/1e879d96e7c7d4df068d9054edeee1d1 to your computer and use it in GitHub Desktop.
Save folivetti/1e879d96e7c7d4df068d9054edeee1d1 to your computer and use it in GitHub Desktop.
import java.util.Scanner;
class Main {
public static void main(String[] args) {
int x, y;
Scanner leitor = new Scanner(System.in);
x = leitor.nextInt();
y = leitor.nextInt();
if(x > y) {
System.out.println(x);
} else {
System.out.println(y);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment