Skip to content

Instantly share code, notes, and snippets.

@Abhayparashar31
Created April 4, 2021 09:14
Show Gist options
  • Save Abhayparashar31/f822703ed7bb69195a5530f33da471a0 to your computer and use it in GitHub Desktop.
Save Abhayparashar31/f822703ed7bb69195a5530f33da471a0 to your computer and use it in GitHub Desktop.
## Taking Two Integers as input
a,b = map(int,input().split())
print("a:",a)
print("b:",b)
## Taking a List as input
arr = list(map(int,input().split()))
print("Input List:",arr)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment