@ -21,8 +21,8 @@
2.
```py
>>> import time
>>> localTime = time.localtime()
>>> print("Current time: {}:{}".format(localTime.tm_hour, localTime.tm_min))
>>> MosTime = time.gmtime()
>>> print("Current time: {}:{}".format(MosTime.tm_hour + 3, MosTime.tm_min))
Current time: 19:52
```
3.