import java.util.*;


public class Solution {
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param x int整型 
     * @return int整型
     */
    public int reverse (int x) {
        // write code here
        int num = 0;
        while(x != 0){
            if (!(num < Integer.MAX_VALUE /10 || (num == Integer.MAX_VALUE && x % 10 < 8))){
                return 0;
            }
            if (!(num > Integer.MIN_VALUE /10 || (num == Integer.MAX_VALUE && x % 10 >= -8))){
                return 0;
            }
            num *= 10;
            num += x % 10;
            x /= 10;
        }
        return num;
    }
}