Computer Science, asked by panchaldeep110, 4 months ago

find out the error(s) if any in the following code and Rewrite it after making
the vorrections. Also, underline each correction.
A=int(input( Entez value of "))
B=int (input ("Enter value of B"))
for i in range [0,5]
if A==B
print (A)
else:
Print (B)​

Answers

Answered by shinzonskireddy
0

Answer:

A= int(input("Enter value of A : "))

B= int(input("Enter value of B : "))

for i in range(0,5):

   if A==B :

       print(A)

   else:

       print(B)​

Explanation:

Similar questions