Solution to the problem number 10696 of UVA - 10696.

Any questions do not hesitate to contact.

#include<bits/stdc++.h>
using namespace std;

int main(){
    int N;
    while(cin>>N && N!=0){
        if(N<=101) printf("f91(%d) = 91\n",N);
        else printf("f91(%d) = %d\n",N,N-10);
    }
    return 0;
}

Don't miss anything.

Keep in touch with Isaac Lozano Osorio!