fork download
  1. #include <stdio.h>
  2. int main(void) {int p, q;
  3. scanf("%d %d", &p, &q);
  4. while(q>=p) {printf("%d\t", p);
  5. p=p+1;}
  6. return 0;
  7. }
  8.  
Success #stdin #stdout 0s 5276KB
stdin
23 50
stdout
23	24	25	26	27	28	29	30	31	32	33	34	35	36	37	38	39	40	41	42	43	44	45	46	47	48	49	50