answer.code: In function ‘void solve()’:
answer.code:7:9: error: ‘ll’ was not declared in this scope
7 | set<ll>st;
| ^~
answer.code:7:11: error: template argument 1 is invalid
7 | set<ll>st;
| ^
answer.code:7:11: error: template argument 2 is invalid
answer.code:7:11: error: template argument 3 is invalid
answer.code:9:11: error: expected ‘;’ before ‘k’
9 | ll k;
| ^~
| ;
answer.code:10:14: error: ‘k’ was not declared in this scope
10 | cin>>k;
| ^
answer.code:11:12: error: request for member ‘insert’ in ‘st’, which is of non-class type ‘int’
11 | st.insert(k);
| ^~~~~~
answer.code:13:11: error: request for member ‘size’ in ‘st’, which is of non-class type ‘int’
13 | if(st.size()>=3) cout<<"Yes\n";
| ^~~~