#include <iostream> 
#include <iomanip> 
using namespace std; 
 
int main() 
{ 
  cout << setw(20) << "Hello there."; 
 
  return 0; 
}
