Kattis Solution to Real Challenge in CPP

#include<bits/stdc++.h>
using namespace std;
int main(int argc, char const *argv[])
{
long x;
cin >> x;
cout.precision(10);
cout << sqrt(x)*4;
return 0;

Comments

Popular posts from this blog

Basketball One-on-One : Kattis Solution in C++

Kattis Solution to Reverse Binary in C++

Kattis Solution to Odd Man out In cpp