int s[n] : the numbers on each of the squares of chocolate
int d : 주인공의 생일
int m : 주인공의 생월
초콜릿을 나눌수 있는 경우의 수 , 정수형
def birthday(s, d, m):
# Write your code here
result = 0
for i in range(len(s)-m+1):
total = 0
for j in range(i,i+m):
total += s[j]
print(total)
if(total == d):
result +=1
return result