#P409. 练70.1 验证子串
练70.1 验证子串
Description
Input two strings and verify if one string is a substring of the other.
Input Format
Input two strings, each on a separate line, with length not exceeding and containing no spaces.
Output Format
If the first string is a substring of the second string , output "() is substring of ()";
Otherwise, if the second string is a substring of the first string , output "() is substring of ()";
Otherwise, output "No substring".
Sample
abc
dddncabcaabc is substring of dddncabca