Advertisement
Avdluna

ABC Contest A

May 17th, 2015
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.30 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main()
  5. {
  6.    int x,y;
  7.  
  8.    scanf("%d %d", &x,&y);
  9.  
  10.    if ( x<=y ) {
  11.  
  12.   while ( x <= y) {
  13.  
  14.    printf("%d ", x++);
  15.  
  16.  
  17.   }
  18.  
  19.    }
  20.  
  21.     else {
  22.  
  23.         while ( x >= y) {
  24.  
  25.             printf("%d ", y++);
  26.         }
  27.  
  28.     }
  29.  
  30.  
  31.     return 0;
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement