#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; if(n<180) cout<<"收费5元"; else cout<<"收费20元"; return 0; }