a=2
b=5
add=a+b
sub=a-b
mul=a*b
div=a/b
mod=a%b
print("addition is:",add)
print("substraction is:",sub)
print("multiplication is:",mul)
print("division is:",div)
print("module is:",mod)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: