Python Installation, identifiers, keywords, variables

Copy the Program Title Here

 
      n=int(input("Enter the count"))
      for i in range(1,n+1):
        print(i)
    
Output

Display a message using PHP

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