Выходит эта ошибка:
File "jailed_code", line 11
count+=1
^
SyntaxError: invalid syntax
Вот сам код
s = input().lower().split()
l = len(s)
count = 0
x = 0
while count<=(l-1):
for i in s:
if i == s[count]:
x += 1
print(str(s[count]) +" " + str(x) + ("\n")
count+=1
x-=x