#include<stdio.h> #include<string.h> int main() { char s1[1000], s2[1000], arr[1000]; scanf("%s %s", s1, s2); if(strlen(s1) >strlen(s2)) { char tmp[1000]; strcpy(tmp, s1); strcpy(s1, s2); strcpy(s2, tmp); } int max = 0; for(i...