stdnoskipws
std::noskipws is a manipulator in the C++ standard library that disables the default behavior of skipping leading whitespace on input streams during formatted input. When applied to an input stream, it clears the ios_base::skipws flag, causing subsequent extractions with operator>> to read whitespace characters as part of the input rather than ignoring them. The flag remains in effect for the stream until it is changed back, for example by applying std::skipws or by resetting the stream’s state.
Usage examples: You apply it to the stream like std::cin >> std::noskipws;. After that, reading a char
Implementation notes: noskipws is defined in the standard library for input streams, typically declared in headers