C 代码
#include <stdio.h>
int main()
{
char a[100];
char b[100];
while(scanf("%s %s",a,b)!=EOF)
{
int t = (int)a[0];
int y = 0; //
for(int i = 0; a[i] != '\0'; i++)
{
if(t < (int)a[i])
{
t = (int)a[i];
y = i;
}
}
for(int i = 0; i <= y; i++) printf("%c", a[i]);
for(int i = 0; b[i] != '\0'; i++) printf("%c", b[i]);
for(int i = y+1; a[i] != '\0'; i++) printf("%c", a[i]);
printf("\n");
}
return 0;
}