Question 8: Please a write a program that receives 2 integer numbers, then outputs numbers between those inputs. If the inputs are equal, write the input number instead.
*No space between the output numbers*
Input1
1 5
Output 1
12345
Input2
-3 3
Output2
-3-2-10123
Input3
5 5
Output3
5
Hidden content!#include <stdio.h>#include <stdlib.h>int main (int argc, char *argv[]){ int a,b; scanf("%d%d", &a, &b); while(a<=b){