नीचे दिए गए प्रोग्राम का आउटपुट क्या है?<break-line><break-line>What is the output of below program ?<pre><code>def maximum(x, y):
if x > y:
return x
elif x == y:
return 'The numbers are equal'
else:
return y
print(maximum(2, 3))</code></pre>
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>for i in range(1,6):
print(i, end='')
if i == 3:
break</code></pre>