change cout to clog

This commit is contained in:
PoliEcho 2024-12-15 21:37:43 +01:00
parent be92e980fd
commit 73ce54256e

View File

@ -15,7 +15,7 @@ void printDiskMap(std::vector<int> &diskmap) {
std::clog << numC << diskmap[i] << RESET;
}
}
std::cout << RESET << std::endl;
std::clog << RESET << std::endl;
}
int main() {
std::ifstream inputfile("input");