#include<iostream> using namespace std; int main(){ int n; cin>>n; while(n>0){ if(n=1){ cout<<n; break; } n--; } return 0; }