int max_of_four(int a, int b, int c, int d){ int ans; if (a > b && a > c && a > d) ans = a; else if (b > c && b > d) ans = b; else if (c > d) ans = c; else ans = d; return ans; }
If you're trying to use a package make sure that '../../static/fonts/lato/Lato-Regular.woff' is installed. If you're trying to use a local file make sure that the path is correct.
Write a Python program to accept two strings as input and check if they are identical copy of each other or if the second string is a substring of the first string.