Ответ:
ниже
Объяснение:
text = input()
text2 = input()
i = 0
while text[i] == text2[i]:
i += 1
print(i)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
ниже
Объяснение:
text = input()
text2 = input()
i = 0
while text[i] == text2[i]:
i += 1
print(i)