Write the output of the following:
def cal(m,n):
if m==n:
return m*3
else:
return n*2
s = cal("Amit", "Anuj")
print(s)1.AmitAmitAmit
2.AmitAmit
3.AnujAnujAnuj
4. AnujAnuj
Answer:4
Posted Date:-2021-12-12 02:23:49