#include #include #include using namespace std; int main () { ofstream outfile; int a = 5, b = 98, c = 80928; outfile.open("new.txt"); outfile << a << setw(24) << b << setw(24) << c << endl; outfile.close(); return 0; }