Correct the following python programme. then save the corrected code in the Word file by copying and pasting it.
X = int(input(“please enter an integer value : “)
Y = int(input(“Please enter another integer value: “)
a = int(x)
b = int(y)
z = a%x
print(z)
X = int(input('Please enter an integer value : '))
Y = int(input('Please enter another integer value: '))
a = X
b = Y
z = a % b
print(str(z))
Comments
Leave a comment