#!/usr/bin/env python
# -*- coding:utf-8 -*-
class Solution:
def reverse(self, x: int) -> int:
s=str(x)
2017-12-02