{{trans|Swift}} Dyalect has no operator for exponential. let a = 6 let b = 4 print("sum = \(a+b)") print("difference = \(a-b)") print("product = \(a*b)") print("Integer quotient = \(a/b)") print("Remainder = \(a%b)")