fork download
  1. #include <iostream>
  2. #include <cmath>
  3. using namespace std;
  4.  
  5. int main() {
  6. int N;
  7. cin >> N;
  8. cout << (int) sqrt(N) << sqrt(N);
  9. }
Success #stdin #stdout 0s 4464KB
stdin
5
stdout
22.23607