3. Math
A computer is great at math.
A computer is great at math. Use + to add, - to subtract, * to multiply, and / to divide. Try changing the numbers and watch the answers change!
Code
make apples = 4
make oranges = 3
print("Total fruit:", apples + oranges)
print("Double the apples:", apples * 2)
print("One less orange:", oranges - 1)Copy this code into the Aksa editor, run it, then change something and run it again!