#Addition
a <- 3+4
a 

#Subtraction
b <- 2-9
b 

#Multiplication
c <- 5*12
c 

#Division
d <- 16/3
d 

#Exponential
e <- 2^3
e 

#Modulo - remainder
f <-7%%3
f 

Embed on website

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