Average

3

1 votes
Problem

Given 4 integers a, b, c, d in the input. Find out average of these numbers correct to 2 decimal places.

Time Limit: 1
Memory Limit: 256
Source Limit:
Explanation

Average = (3 + 3 + 2 + 2) / 4 = 2.50

Donot print 2.5, because output must be given correct to 2 decimal places.

Editor Image

?