#include<iostream>
#inclue<iomanip>
// Introducing the concept of setw//
using namespace std;
int main()
{
int i = 13;
cout<<setw(19)<<i;
}
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
cout<< setw(19)<< "77";
}
#include<iostream>
#inclue<iomanip>
// Introducing the concept of setw//
using namespace std;
int main()
{
int i = 13;
cout<<setw(19)<<i;
}
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
cout<< setw(19)<< "77";
}