#include<bits/stdc++.h> using namespace std; int sum(int x){ if(x==18){ return x; }sum(x+2); } int main(){ cout<<sum(10); return 0; }