Python comment, data types, type conversion, input, operators,if else

Adding two numbers

 
      import add
res=add_numbers(2,3)
print(res)
    
Output

Display a message using PHP

 
      <?php
       echo "My God its working";
      ?>
    
Output