#include <iostream>
#include <windows.h>
#include <string>
// Read user input and use it in system() command//
int system(constchar *command);
usingnamespace std;
int main()
{
int x;
cout << "SPECIFY THE DISK YOU WANT TO SCAN" << endl;
cin >> x;
system("forfiles.exe /p "+ x:\\" /s /m *.pdf");
return 0;
}