>>> a = b = None>>> lst = input().split()1 2 3>>> if len(lst) > 1:... a, b = lst[:2]... >>> a, b('1', '2')>>>
a = input(u"a: ")b = input(u"b: ")