#include <iostream.h>
#include <string>

main()
{

  string t1 = "Testing this code";
  string t2;

  char buf[20];
  buf << 15;

  cout << buf;

}


