#include <stdio.h> #include <string.h> #include <limits.h> int get(char a, char b) { int diff = a - b; if (diff < 0) { diff = -diff; } return diff < 26 - diff ? diff : 26 - diff; } int main() { char s[1001], t[1001]; scanf("%s %s", s, t); int len_s = strlen(s); int ...