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