#include <stdio.h>

int main(void) {
	char *str = "1234567890";
	int n;
	sscanf(str+3, "%3d", &n);
	printf("%d\n", n);
	return 0;
}
