def get_first_character_repeated(s):
ln = len(s)
for i in range(ln):
for j in range (i + 1, ln):
if (s[i] == s[j]):
return i
return -1
s = "abcdxypcbop"
i = get_first_character_repeated(s)
if (i == -1):
print("Not found")
else:
print (s[i])
'''
run:
b
'''