Computer Science, asked by pvarma5564, 1 month ago

a=33
b=33
If (b>a);
print("b is greater than a")
Else:
print( a is greater than b)
FIND out its error and rewrite it again

Answers

Answered by noumanrafiq25
0
a=33;
b=33;
If (b>a)
print("b is greater than a");
Else
print( a is greater than b);

FIND out its error and rewrite it again
Similar questions