Question 1: Calculate the Average Score

Write a Python program which accepts 4 different subject scores from the user and compute the average exam score of a student.

INPUT:

There will be 4 inputs.

  1. Math Score (integer)
  2. Science Score (integer)
  3. English Score (integer)
  4. Second Language Score (integer)

OUTPUT:

Program should print a single float representing the average exam score of the user.

EXAMPLE

INPUT:

100

85

68

87

OUTPUT:

85.0