#include<bits/stdc++.h> using namespace std; int age(int n){ if(n>1){ return age(n-1)+2; } else return 10; } int main(){ cout<<age(5); ; return 0; }