#include <stdio.h> #include <string.h> int main() { char str[1000] = {'\0'}; scanf("%s", str); int len = strlen(str); char letter[26] = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z' }; int ret[2...