#C4557. Amanda's Photo Count

    ID: 48108 Type: Default 1000ms 256MiB

Amanda's Photo Count

Amanda's Photo Count

Amanda is an enthusiastic photographer. She plans to take photographs over the next n days regardless of the weather conditions. Given the number of days and the corresponding weather conditions for each day, your task is to compute the total number of photographs Amanda will take. Since Amanda takes exactly one photograph per day whether the weather is clear or not, the total number of photographs is simply given by:

$$T = n$$

Note: The list of weather conditions is provided for additional context and may contain values representing different meteorological conditions but does not affect the number of photographs taken.

inputFormat

The input is provided via stdin and consists of two lines:

  1. The first line contains a single integer n representing the number of days.
  2. The second line contains n space-separated integers representing the weather conditions for each day.

outputFormat

Output a single integer to stdout representing the total number of photographs Amanda will take.

## sample
5
0 0 0 0 0
5