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