12 lines
154 B
C++
12 lines
154 B
C++
|
|
#include <cstdio>
|
||
|
|
#include <direct.h>
|
||
|
|
|
||
|
|
int main() {
|
||
|
|
remove( "input.txt" );
|
||
|
|
remove( "/input.txt" );
|
||
|
|
_rmdir( "docs" );
|
||
|
|
_rmdir( "/docs" );
|
||
|
|
|
||
|
|
return 0;
|
||
|
|
}
|