#include<iostream> #include<cmath> using namespace std; int main() { int n; for(int i=2;i<=sqrt(n);i++) { if(n%i==0) { cout<<n%i; break; } } }