#include <stdio.h>

main()

{

char r;

while (r=='n')

{

printf("n");

scanf("%c",&r);

}

}

n누르면 반복하게 하려고하는데 뭐가문제임????