<?php

$xml = simplexml_load_file('php://stdin');

foreach ($xml->xpath('Owner') as $owner)
{
  foreach($owner->LicAccounts->xpath('LicAccount') as $licaccount)
  {
    echo $licaccount->attributes()->name."\r\n";
  }
}