public int reverse (int x){
    // write code here
    long y=0;
    while(x!=0){
        y=y*10+x%10;
        x=x/10;
    }
    return (int)y;
}