8 lines
161 B
Text
8 lines
161 B
Text
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)")
|