Development C++ Tutorial

#include  
#include  
using namespace std; 
 
int main() 

  cout << setw(20) << "Hello there."; 
 
  return 0; 
}
Hello there.