Created
April 4, 2021 09:14
-
-
Save Abhayparashar31/f822703ed7bb69195a5530f33da471a0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## 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