xxxxxxxxxx
x,y=map(int,input().split())#you can change the int to specify or intialize any other data structures
print(x)
print(y)
xxxxxxxxxx
a, b = map(int, input('Enter Two Values: ').split())
print('a = ', a, ' and type is: ', type(a))
print('b = ', b, ' and type is: ', type(b))