print(937808300 + 932955077) print(937808300 - 932955077) print(937808300 * 932955077) print(937808300 / 932955077) Use code with caution. Copied to clipboard
Note: expr performs integer division, so it discards the remainder. Usage Tips
In modern scripting (like Bash), it is often more efficient to use Arithmetic Expansion —for example: $((937808300 + 932955077)) .
print(937808300 + 932955077) print(937808300 - 932955077) print(937808300 * 932955077) print(937808300 / 932955077) Use code with caution. Copied to clipboard
Note: expr performs integer division, so it discards the remainder. Usage Tips expr 937808300 932955077
In modern scripting (like Bash), it is often more efficient to use Arithmetic Expansion —for example: $((937808300 + 932955077)) . expr 937808300 932955077