' Arthimetic/Integer DECLARE a%, b% INPUT "Enter integer A: ", a% INPUT "Enter integer B: ", b% PRINT PRINT a%, " + ", b%, " is ", a% + b% PRINT a%, " - ", b%, " is ", a% - b% PRINT a%, " * ", b%, " is ", a% * b% PRINT a%, " / ", b%, " is ", a% / b%, ", trucation toward zero" PRINT "MOD(", a%, ", ", b%, ") is ", MOD(a%, b%), ", same sign as first operand" PRINT "POW(", a%, ", ", b%, ") is ", INT(POW(a%, b%))