+ Time limit: 1 second
+ Memory limit: 256 megabytes
------
Ali is a physics enthusiast and likes to gain knowledge in different areas of physics. He delved into string theory, but due to a wrong search, he became involved in a computer science question. Since he is insistent on knowing the answer, he asks for your help in solving this problem.
The question is that you must write a program that can find a string within another sentence.
# Input
The input consists of two lines. The desired string comes on the first line, and the sentence comes on the second line.
# Output
Your program's output must consist of a single number. If the string is found within the sentence, print the number 1; otherwise, print the number 0.
# Example
## Sample Input 1
```
string
string theory is a theoretical framework in particle physics
```
## Sample Output 1
```
1
```
## Sample Input 2
```
framework
In cs, a string is traditionally a sequence of characters
```
## Sample Output 2
```
0
```