#include <stdio.h>

int main(void) {
	char *str = "abc";
	putchar(str[1]);
	putchar(1[str]);
	putchar(*(1 + str));
	return 0;
}
