1 #include <stdio.h>
2 
main(void)3 int main(void) {
4 	char str1[2];
5 	fgets(str1, 2, stdin);
6 	int b = *str1 == 'a';
7 	return 0;
8 }
9