1543번

· 백준
코드1 print(input().count(input())) # 개수를 세어주는 함수 사용 코드2 # 문자열 슬라이싱을 이용해 풀이 munseo = input() find = input() start = 0 end = start+len(find) cnt = 0 while end