Skip to content

Instantly share code, notes, and snippets.

@ankurbansal
Created June 22, 2015 04:56
Show Gist options
  • Save ankurbansal/877bc0631fe9f4f0bb8a to your computer and use it in GitHub Desktop.
Save ankurbansal/877bc0631fe9f4f0bb8a to your computer and use it in GitHub Desktop.
Java Input
Scanner in = new Scanner(System.in);
int a;
a = in.nextInt();
int b;
b = in.nextInt();
int sum;
sum = solveMeFirst(a, b);
System.out.println(sum);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment