Search in the text
Write a function to get 2 disciplines and search the second string in the first string. If in the first string, the second string existed TRUE and otherwise returned FALSE
Note: You should not use ready -made functions to search.
Example
search('code-bezan.ir','code') # True search('code-bezan.ir', 'code2') # False