fork(1) download
  1. <?php
  2. //------------------Стал выдавать ошибку после добавления кода с 5 по 31 строку.
  3. abstract class Department {
  4. public $employees = array();
  5. public $moneyConsumption;
  6. public $coffeeConsumption;
  7. public $reportsGeneration;
  8. public $toogreeksPerPage;
  9.  
  10. public function name () {
  11.  
  12. }
  13. }
  14. class Purchasing extends Department {
  15. public function __construct() {
  16. while ($i < 9)
  17. $this->employees[] = new Manager(1, false);
  18. $i = $i + 1;
  19. }
  20. }
  21. class Sales extends Department {
  22.  
  23. }
  24. class Marketing extends Department {
  25.  
  26. }
  27. class Logistics extends Department {
  28.  
  29. }
  30. //----------------------------------------------------------------------------->
  31. abstract class Employee {
  32. public $rank;
  33. public $isBoss;
  34. public $salary;
  35. public $coffee;
  36. public $reports;
  37.  
  38. public function getSalary($salary) {
  39. if ($this->rank == 1) {
  40. $result = $salary;
  41. }elseif ($this->rank == 2) {
  42. $result = $salary * 1.25;
  43. }elseif ($this->rank == 3) {
  44. $result = $salary * 1.5;
  45. }
  46. if ($this->isBoss == true) {
  47. $result = $result * 1.5;
  48. }
  49. return $result;
  50. }
  51. public function getCoffee($coffee) {
  52. if ($this->isBoss == true) {
  53. $result = $coffee * 2;
  54. }
  55. return $result;
  56. }
  57. public function getReports($reports) {
  58. if ($this->isBoss == true) {
  59. $result = 0;
  60. }
  61. return $result;
  62. }
  63. }
  64.  
  65. class Manager extends Employee {
  66. public function __construct($rank, $isBoss) {
  67. $salary = 500;
  68. $coffee = 20;
  69. $reports = 200;
  70. $this->rank = $rank;
  71. $this->isBoss = $isBoss;
  72. $this->salary = $this->getSalary($salary);
  73. $this->coffee = $this->getCoffee($coffee);
  74. $this->reports = $this->getReports($reports);
  75. }
  76. }
  77. class Marketer extends Employee {
  78. public function __construct($rank, $isBoss) {
  79. $salary = 400;
  80. $coffee = 15;
  81. $reports = 150;
  82. $this->rank = $rank;
  83. $this->isBoss = $isBoss;
  84. $this->salary = $this->getSalary($salary);
  85. $this->coffee = $this->getCoffee($coffee);
  86. $this->reports = $this->getReports($reports);
  87. }
  88. }
  89. class Engineer extends Employee {
  90. public function __construct($rank, $isBoss) {
  91. $salary = 200;
  92. $coffee = 5;
  93. $reports = 50;
  94. $this->rank = $rank;
  95. $this->isBoss = $isBoss;
  96. $this->salary = $this->getSalary($salary);
  97. $this->coffee = $this->getCoffee($coffee);
  98. $this->reports = $this->getReports($reports);
  99. }
  100. }
  101. class Analyst extends Employee {
  102. public function __construct($rank, $isBoss) {
  103. $salary = 800;
  104. $coffee = 50;
  105. $reports = 5;
  106. $this->rank = $rank;
  107. $this->isBoss = $isBoss;
  108. $this->salary = $this->getSalary($salary);
  109. $this->coffee = $this->getCoffee($coffee);
  110. $this->reports = $this->getReports($reports);
  111. }
  112. }
  113.  
  114. $purchasing = new Purchasing;
  115. var_dump($purchasing);
Runtime error #stdin #stdout #stderr 0.02s 33344KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 63
PHP Notice:  Undefined variable: i in /home/Mw6pSy/prog.php on line 18
PHP Notice:  Undefined variable: result in /home/Mw6pSy/prog.php on line 57
PHP Notice:  Undefined variable: result in /home/M