x,y=map(int,input().split())#you can change the int to specify or intialize any other data structures
print(x)
print(y)
x, y = map(int, input().split())
only_str = input().split() #only str
define_type = list(map(int, input().split())) #int, float, str
mA,mB = map(float,input().split()) #if float data type
mA,mB = map(int,input().split()) #if int data type
x = list(map(int, input("Enter multiple values: ").split()))
print("List of students: ", x)
x = list(map(int, input("Enter multiple values: ").split()))
print("List of students: ", x)