"Series - 1 : Given two integers A and B (A ≤ B). Print all numbers from A to B inclusively. " - Snackify python coding question on February 22, 2022 Get link Facebook X Pinterest Email Other Apps CODING QUESTIONGiven two integers A and B (A ≤ B). Print all numbers from A to B inclusively. SOLUTION a=int(input())b=int(input())for i in range(a,b+1): print(i,sep=' ') Input : 110Output : 12345678910