#include
int main(){ char e; scanf("%c",&e); if(e=='y'){ printf("ok"); }else { printf("no"); }; return 0;}
e是变量,y是字符
因为e是一个变量,所以不用加而y这里是一个字符,所以要加