fork download
  1. #include<iostream>
  2. using namespace std;
  3. inline int square(int x)
  4. {
  5.  
  6. return x*x;
  7. }
  8. int main(){
  9. cout<<square(5);
  10. }
Success #stdin #stdout 0s 5316KB
stdin
45
stdout
25