#include <stdio.h>

typedef struct {
  int a, b;
} S;

int main(void) {
    S s;
    S *p = &s;
	// your code goes here
	*p = (S){1,2};
	
	printf("%d %d\n", p->a, p->b);
	return 0;
}
