sequence.cpp: In function 'void solve()':
sequence.cpp:57:25: error: 'pritnf' was not declared in this scope; did you mean 'printf'?
57 | for(int i=1;i<=l;i++) pritnf("%d ", pref[i] - pref[i-1]);
| ^~~~~~
| printf
sequence.cpp:58:3: error: 'put' was not declared in this scope; did you mean 'putw'?
58 | put("");
| ^~~
| putw
sequence.cpp:46:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
46 | scanf("%d %d", &n, &m);
| ~~~~~^~~~~~~~~~~~~~~~~
sequence.cpp: In function 'int main()':
sequence.cpp:65:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
65 | scanf("%d", &t);
| ~~~~~^~~~~~~~~~