Prendre plusieurs entrées dans Python
only_str = input().split() #only str
define_type = list(map(int, input().split())) #int, float, str
bokaif
only_str = input().split() #only str
define_type = list(map(int, input().split())) #int, float, str
a, b = input('Enter Two Values: ').split()
print('a = ', a)
print('b = ', b)