#include <stdio.h>
#include <stdlib.h>
int main () {
char *s1;
char *s2;
s1 = (char *) malloc (1);
strcpy (s1, " Williams beats Wesleyan");
s2 = (char *) malloc (1);
strcpy (s2, "Amherst");
printf ("%s\n", s1);
exit (0);
}