天凉
Results
1
comments of
天凉
```js function reverse(num) { if(num > 10) { let a = num / 10 let b = num % 10 return b + reverse((num - b) / 10) }else if(num...