#include <iostream> using namespace std; int main() { char x; cin>>x; if(x>='0'&&x<='9') { cout<<(x-48)*5; } else { cout<<"No"; } return 0; }