ارسال شماره 280

← همه ارسال‌ها

#include <iostream>
using namespace std;
int main()
{
    double x , y , z;
    cin >> x >> y >> z;
    cout << (int)((x + y + z) / 3) ;




      return 0;
}