Skip to content

Instantly share code, notes, and snippets.

@Isammoc
Created June 2, 2015 15:25
Show Gist options
  • Save Isammoc/a476e0cfa34269779790 to your computer and use it in GitHub Desktop.
Save Isammoc/a476e0cfa34269779790 to your computer and use it in GitHub Desktop.
@Cqoicebordel sais tu s'il est possible de faire en java un truc similaire à : a,b=[int(i) fort i in input.split()] ?
String[] split = input.split();
int a = Integer.parseInt(split[0]);
int b = Integer.parseInt(split[1]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment