#include<bits/stdc++.h> using namespace std; int main() { float a=110,b=10,c=110,d=10; while(a*b!=3500) { a--;b++; } while(c*d!=3500) { c++;d--; } if(a<c)cout<<round(a); else cout<<round(c); return 0; }