C++ C# python Web
95 subscribers
43 photos
9 videos
5 files
8 links
C++ C# python va web dasturlashdan misollar ishlab beriladi.
@w_error
@proggramingg
@cpp256
@Ilhom1vich08
Download Telegram
Channel created
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin>>n;
int i=1;
while(n>0)
{
if(i*i>n)
{
cout<<i;break;
}
i++;
}

}