Advertisement
Josif_tepe

Untitled

Jul 6th, 2023
726
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.37 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main(int argc, const char * argv[]) {
  4.  
  5.     int a, b;
  6.     scanf("%d%d", &a, &b);
  7.    
  8.     if(a < b) {
  9.         while(a <= b) {
  10.             printf("%d ", a);
  11.             a++;
  12.         }
  13.     }
  14.     else {
  15.         while(b <= a) {
  16.             printf("%d ", b);
  17.             b++;
  18.         }
  19.     }
  20.    
  21.     return 0;
  22. }
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement