from itertools import count
import math
'''
what is the output of the below python code? Note: Assume That Necessary Imports Have Been Done
'''
temp=['Mysore','Banglore','Pune','Chennai']
temp.sort()
count1=len(temp[0])
count2=len(temp[-1])
final_val=math.ceil(count1/count2)
print(final_val)
'''
OUTPUT
2
'''