#define _CRT_SECURE_NO_WARNINGS #include "bits/stdc++.h" #if defined(_MSC_VER) || defined(ONLINE_JUDGE) #define getchar_unlocked _getchar_nolock #define putchar_unlocked _putchar_nolock #endif using namespace std; #define rep(i, n) for(int i=0; i<(n); ++i) #define FOR(i, m, n) for(int i=(m); i<(n); ++i) #define sz(x) ((int)(x).size()) #define all(x) (x).begin(),(x).end() #define mp make_pair #define pb push_back #define dump(x) cerr << #x << " = " << (x) << endl; using LL=long long; using VS=vector; using VD=vector; using VI=vector; using VL=vector; using VVI=vector; using VVL=vector; using PII=pair; using PLL=pair; const int inf = (int)1e9; const double pi = acos(-1.0); const LL MOD = 1000000007; const string Snum = "0123456789"; const int dx[] = { -1,0,1,0,-1,-1,1,1 }, dy[] = { 0,1,0,-1,-1,1,-1,1 }; templatevoid Sort(T& a) { sort(a.begin(), a.end()); } templatevoid ReSort(T& a) { sort(a.rbegin(), a.rend()); } templatevoid Reverse(T& a) { reverse(a.begin(), a.end()); } templatevoid Unique(T& a) { a.erase(unique(a.begin(), a.end()), a.end()); } templateauto Max(const T& a) { return *max_element(a.begin(), a.end()); } templateauto Min(const T& a) { return *min_element(a.begin(), a.end()); } templateint Count(const T& a, U c) { return count(a.begin(), a.end(), c); } templateU Sum(const T& a, U init = 0) { return accumulate(a.begin(), a.end(), init); } templateint Lower(const T& a, U s) { return lower_bound(a.begin(), a.end(), s) - a.begin(); } templateint Upper(const T& a, U s) { return upper_bound(a.begin(), a.end(), s) - a.begin(); } templateT Age(T a, T b) { return (a + b - 1) / b; } templateT gcd(T n, T m) { return m == 0 ? n : gcd(m, n % m); } templateT lcm(T n, T m) { return n / gcd(n, m) * m; } /* INPUT */ templateT GetInput() { return 0; } template<> char GetInput() { char ret = '\0', c = getchar_unlocked(); while (c != '\0' && c != '\n' && c != '\t' && c != ' ') { ret = c; c = getchar_unlocked(); } return ret; } template<> string GetInput() { string ret; char c = getchar_unlocked(); while (c != '\0' && c != '\n' && c != '\t' && c != ' ') { ret.push_back(c); c = getchar_unlocked(); } return ret; } template<> int GetInput() { int ret = 0; bool neg = false; char c = getchar_unlocked(); if (c == '-') { neg = true; c = getchar_unlocked(); } while ('0' <= c && c <= '9') { ret = ret * 10 + (c - '0'); c = getchar_unlocked(); } return neg ? -ret : ret; } template<> LL GetInput() { LL ret = 0; bool neg = false; char c = getchar_unlocked(); if (c == '-') { neg = true; c = getchar_unlocked(); } while ('0' <= c && c <= '9') { ret = ret * 10LL + (LL(c) - LL('0')); c = getchar_unlocked(); } return neg ? -ret : ret; } template<> double GetInput() { double ret = 0, dp = 1; bool neg = false, adp = false; char c = getchar_unlocked(); if (c == '-') { neg = true; c = getchar_unlocked(); } while (('0' <= c && c <= '9') || c == '.') { if (c == '.') { adp = true; } else if (adp) { dp *= 0.1; ret += (c - '0') * dp; } else { ret = ret * 10 + (c - '0'); } c = getchar_unlocked(); } return neg ? -ret : ret; } templateT StoT(string s) { return s; } template<> char StoT(string s) { return s.front(); } template<> string StoT(string s) { return s; } template<> int StoT(string s) { return stoi(s); } template<> LL StoT(string s) { return stoll(s); } template<> double StoT(string s) { return stod(s); } string GetLine() { string ret; char c = getchar_unlocked(); while (c != '\0' && c != '\n') { ret.push_back(c); c = getchar_unlocked(); } return ret; } VS InputBuffer; templatestruct Input { operator T() { return GetInput(); } vector operator[](int n) { vector ret(n); for (auto& a : ret)a = GetInput(); return ret; } vector> operator[](PII p) { int n, m; tie(n, m) = p; vector> ret(n, vector(m)); for (auto& a : ret)for (auto& b : a)b = GetInput(); return ret; } T at(int n) { while ((int)InputBuffer.size() <= n)InputBuffer.pb(GetInput()); return StoT(InputBuffer[n]); } vector at(int n, int h) { vector ret(h); rep(i, n)ret[i] = Input::at(i + n); return ret; } vector> at(int n, int h, int w) { vector> ret(h, vector(w)); rep(i, h)rep(j, w)ret[i][j] = Input::at(n + i * w + j); return ret; } }; Input inc; Input ins; Input ini; Input inl; Input ind; /* OUTPUT */ class ostreamfbuff : public std::basic_streambuf> { protected:int overflow(int nCh = EOF) { putchar_unlocked(nCh); return 0; } }; class ostreamf : public std::basic_iostream> { public:ostreamf(void) : std::basic_iostream>(new ostreamfbuff()) {} }; ostreamf coutf; ostream& operator << (ostream& ostr, Input i) { ostr << string(i); return ostr; } struct boolswitch { string t, f; boolswitch(string tr, string fa) :t(tr), f(fa) {} }yes("yes", "no"), Yes("Yes", "No"), YES("YES", "NO"), Yay("Yay!", ":("); struct divizer { string s; divizer(string s_) :s(s_) {} }spc(" "), nosp(""), comma(","), lin("\n"); struct outputter { bool flag = false; boolswitch bs; divizer di; outputter(bool f, boolswitch b, divizer d) :flag(f), bs(b), di(d) {} templateoutputter operator ,(T o) { if (flag)coutf << di.s; coutf << o; outputter t(true, bs, di); return t; } outputter operator ,(double o) { if (flag)coutf << di.s; printf("%.20f", o); outputter t(true, bs, di); return t; } outputter operator ,(bool o) { if (flag)coutf << di.s; coutf << (o ? bs.t : bs.f); outputter t(true, bs, di); return t; } template outputter operator ,(vector o) { if (flag)coutf << di.s; for (int i = 0; i < (int)o.size(); ++i)coutf << o[i] << (i == (int)o.size() - 1 ? "" : di.s); outputter t(true, bs, di); return t; } template outputter operator ,(pair o) { if (flag)coutf << di.s; coutf << o.first << " " << o.second; outputter t(true, bs, di); return t; } outputter operator ,(outputter o) { coutf << '\n'; return o; } outputter operator ,(boolswitch b) { outputter t(flag, b, di); return t; } outputter operator ,(divizer d) { outputter t(flag, bs, d); return t; } }out(false, Yes, spc); /* ANSWER */ struct Answer { int mini = INT_MAX, maxi = INT_MIN, sumi = 0; LL minl = LLONG_MAX, maxl = LLONG_MIN, suml = 0LL; double mind = DBL_MAX, maxd = DBL_MIN, sumd = 0.; bool flag = false, flagt = true, lastb = false; int sumb = 0; int count = 0; void operator =(int n) { mini = min(mini, n); maxi = max(maxi, n); sumi += n; count++; } void operator =(LL n) { minl = min(minl, n); maxl = max(maxl, n); suml += n; count++; } void operator =(double n) { mind = min(mind, n); maxd = max(maxd, n); sumd += n; count++; } void operator =(bool n) { flag = flag | n; flagt = n ? flagt : false; lastb = n; sumb += n; count++; } }ans; int main() { out, ini.at(0) + ini.at(0) / 2, out; }