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