#38966: _C++


yp11251074@yphs.tp.edu.tw (902-32郭宸宇)


#include<bits/stdc++.h>
using namespace std;
int f91(int n){
    if(n>=101) return n-10;
    else return f91(f91(n+11));
}
int main(){
    int n;
    while(cin>>n){
        if(n==0) break;
        cout<<"f91("<<n<<") = "<<f91(n)<<endl;
    }
}