✏️ Explanatory Question
Arithmetic operators mathematical calculation perform করতে ব্যবহৃত হয়।
| Operator | Meaning |
|---|---|
| + | Addition |
| - | Subtraction |
| * | Multiplication |
| / | Division |
| % | Modulus |
| // | Floor Division |
| ** | Exponentiation |
a = 10
b = 3
print(a + b)
print(a - b)
print(a * b)