#include<stdio.h>
#include<string.h>

int main()
{
    char str[ ] = "geeksforgeeks is the best";
    //converting the given string into uppercase.
    printf("%s\n", strstr (str));
    return 0;
}