#include using namespace std; int main() { int n; cin>>n; if(n*(n+1) % 2 == 1) { cout<<16<<'\n'; return 0; } cout<<15<<'\n'; return 0; }