Sha256: b16338574a08a3636957d025017fb5312acc62bcc7fb3bde8a1abf787d95a2dc
Contents?: true
Size: 290 Bytes
Versions: 10
Compression:
Stored size: 290 Bytes
Contents
local x = io.read() local y = io.read() print ("Sum: " , (x + y)) print ("Difference: ", (x - y)) print ("Product: " , (x * y)) print ("Quotient: " , (x / y)) -- Does not truncate print ("Remainder: " , (x % y)) -- Result has sign of right operand print ("Exponent: " , (x ^ y))
Version data entries
10 entries across 7 versions & 1 rubygems