take one input as string and another input as int on one line python code example
Example: how to input multiple integers in python
x,y=map(int,input().split())#you can change the int to specify or intialize any other data structures
print(x)
print(y)