1int *
2main (s1, s2)
3     int *s1; int *s2;
4{
5  while ((*s1++ = *s2++) != '\0')
6    ;
7  return s1 - 1;
8}
9