about summary refs log tree commit diff
path: root/others/mHoang/decor.c
blob: 54cb2c6807bb35ef5e71733f91f866d221c0e6f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>
#include <math.h>

int main()
{
	unsigned long long n;

	scanf("%lld", &n);

	printf("%ld\n", (unsigned long) sqrt(n));

	return 0;
}