--Write a program to check wether a number is divisible by 5 and 11 or not.
num = io.read("*n")
if(num%5==0 and num%11==0)
then
print("The number is divisible by both 5 and 11")
else
print("The number is not divisible by both 5 and 11")
end
To embed this project on your website, copy the following code and paste it into your website's HTML: