<?php
$arr[1]=20;
$arr1[1]=10;
$sum = $arr[1] + $arr1[1];
echo "$sum";
// your code goes here
?>