learn-python/l3.py

7 lines
71 B
Python
Raw Normal View History

2023-06-07 17:58:34 -04:00
print(5 + 10)
print(5 - 10)
print(5 * 10)
print(5 / 10)
print(5 % 10)