while True:
try:
str1, str2 = input(), input()
# 先把str1设为短的字符串
if len(str1) >= len(str2):
str1, str2 = str2, str1
substr = ''
# 双指针相向查找
for i in range(len(str1)):
for j in range(len(str1) - 1, i - 1, -1):
if str1[i: j + 1] in str2 and j + 1 -i > len(substr):
substr = str1[i: j + 1]
print(len(substr))
except:
break