```python from lpython import u16, i32 u : u16 = u16(32768) print(u, i32(u)) ``` This prints: ```console $ lpython a.py 32768 -32768 ``` But I think it should print: ``` 32768 32768 ```