lyuboyn.cpp: In function 'int main()':
lyuboyn.cpp:17:16: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
17 | if(strlen(bs) != n) while(true);
| ~~~~~~~~~~~^~~~
lyuboyn.cpp:31:31: warning: this 'while' clause does not guard... [-Wmisleading-indentation]
31 | if(s.count(string(bs))) while(true);
| ^~~~~
lyuboyn.cpp:32:3: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'while'
32 | printf("%s\n",bs);
| ^~~~~~
lyuboyn.cpp:8:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
8 | scanf("%d%d%d",&n,&k,&t);
| ~~~~~^~~~~~~~~~~~~~~~~~~
lyuboyn.cpp:16:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
16 | scanf("%s",bs);
| ~~~~~^~~~~~~~~