Skip to content

Instantly share code, notes, and snippets.

@MahmudHasanCSE
Created May 4, 2018 03:52
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 MahmudHasanCSE/39f1bd385fe722ea9bafe1980db95d61 to your computer and use it in GitHub Desktop.
Save MahmudHasanCSE/39f1bd385fe722ea9bafe1980db95d61 to your computer and use it in GitHub Desktop.
a = int(input()) # direct input with casting
a,b=input().split() # input a and b
a,b=map(int,input().split()) # input a and b with casting
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment