rewwrite the given staments a after correcting
a=100
b=20
if(a>b)
print(a)
else
print(b)
Answers
Answered by
2
Answer:
100 > 20 that is so simple
Answered by
0
if (a>b)
And output of this program is
100
And output of this program is
100
Similar questions