DE.cpp: In function 'int main()':
DE.cpp:13:28: error: 'stdin' was not declared in this scope
freopen("input.txt", "r", stdin);
^
DE.cpp:13:33: error: 'freopen' was not declared in this scope
freopen("input.txt", "r", stdin);
^
DE.cpp:14:9: error: 'stdout' was not declared in this scope
setbuf(stdout, NULL);
^
DE.cpp:14:21: error: 'setbuf' was not declared in this scope
setbuf(stdout, NULL);
^
DE.cpp:25:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = 0; i < donut.size(); i++)
^