Advertisement
Guest User

jk,ugtrwbh6jeh

a guest
Oct 25th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int count,a,b,t;
  5. scanf("%d%d",&a,&b);
  6.  
  7. if(a>b) { t=a;a=b;b=t; }
  8. for(count=b;count>=a;count--)
  9. printf("%d\n",count);
  10. system("pause");
  11. return 0;
  12.  
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement