iomanip
#include <iostream>
#include <iomanip>
using namespace std;
int main() {
int num = 12345;
cout << setw(10) << num; // Output: 12345
return 0;
}#include <iostream>
#include <iomanip>
using namespace std;
int main() {
string str = "Hello";
cout << setw(10) << left << str; // Output: Hello
return 0;
}