What is output by the following algorithm if the user enters 3, 8 and 10?
print("Please enter values for a, b and c")
int(input())
int(input())
C = int(input())
a
b =
=
x = a* b + c
y = (b + c) / a
z = x DIV y
w = x MOD y
x = x + y
print(x)
print(y)
print(z)
print (w)