input_numbers=list(map(int,input().split())) sum_number=0 def my_gen(a): i=0 while i <= a: yield i i += 1 for i in my_gen(input_numbers[