Skip to content

Instantly share code, notes, and snippets.

@cthbst
Last active May 14, 2016 08:48
Show Gist options
  • Save cthbst/2d446871f22aa2e8359f8e787114ea3a to your computer and use it in GitHub Desktop.
Save cthbst/2d446871f22aa2e8359f8e787114ea3a to your computer and use it in GitHub Desktop.
#include<iostream>
using namespace std ;
int main(){
int x ;
cin >>x ;
if (x==0){
cout << 0 <<endl ;
}
else {
while (x%10==0){
x/=10 ;
}
while (x>0){
cout <<x%10 ;
x/=10 ;
}
cout <<endl ;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment