#ifndef S0007_REVERSE_INTEGER_HPP
#define S0007_REVERSE_INTEGER_HPP
#include <queue>
#include <cmath>
#include <climits>
class Solution {
public:
int reverse(int x);
};
#endif