fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int s(int a)
  5. {
  6. return a*a;
  7. }
  8.  
  9. int main()
  10. {
  11. // your code goes here
  12. int k = s(5);
  13. return 0;
  14. }
Success #stdin #stdout 0s 3292KB
stdin
Standard input is empty
stdout
Standard output is empty