#include <iostream> #include <cstdio> #include <vector> using namespace std; int main() { vector<int> arr; int t; int M; int ret = 0; while (cin >> t) { arr.push_back(t); char ch = getchar(); if (ch == '\n') break; } /// cin >> M; if (arr.size()<2) cou...