fork download
  1. #include <stdio.h>
  2.  
  3. int abs();
  4. int cube();
  5. int max();
  6.  
  7. int main(void) {
  8. int x,y;
  9. scanf("%d %d",&x,&y);
  10. printf("%d",max(abs(x),cube(y)));
  11.  
  12. return 0;
  13. }
  14.  
  15. int abs(int x){
  16. return (x>0)?x:-x;
  17. }
  18.  
  19. int cube(int x){
  20. return x*x*x;
  21. }
  22.  
  23. int max(int x,int y){
  24. return (x>y)?x:y;
  25. }
  26.  
  27.  
  28.  
Success #stdin #stdout 0s 5244KB
stdin
-20 8
stdout
512