how to convert string to int while inputing two variables and spliting in python code example
Example: taking input of n integers in single line python in a list
arr = list(map(int, input().split()))
arr = list(map(int, input().split()))