1x,y=map(int,input().split())#you can change the int to specify or intialize any other data structures
2print(x)
3print(y)
1only_str = input().split() #only str
2define_type = list(map(int, input().split())) #int, float, str
1# Reads two numbers from input and typecasts them to int using
2# map function
3x, y = map(int, input().split())
4
1mA,mB = map(float,input().split()) #if float data type
2mA,mB = map(int,input().split()) #if int data type