fork(1) download
  1. // C code
  2. // This program will provide options for a user to calculate the square
  3. // cube or Shrink of a positive Integer or float input by a user.
  4. // Developer: Phillip Mobley/Faculty CMIS102
  5. // Date: Feb 22, 2018
  6.  
  7. #include <stdio.h>
  8.  
  9. float Square(float value);
  10. float Cube(float value);
  11. double Shrink(float value);
  12. int main ()
  13.  
  14. {
  15.  
  16. /* variable definition: */
  17.  
  18. int menuSelect;
  19. float intValue, Results;
  20.  
  21. intValue = 1;
  22.  
  23. // While a positive number
  24.  
  25. while (intValue > 0)
  26.  
  27. {
  28.  
  29. printf ("Enter a positive Integer or float \n: ");
  30.  
  31. scanf("%f", &intValue);
  32.  
  33. if (intValue > 0)
  34.  
  35. {
  36.  
  37. printf ("Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink \n: ");
  38.  
  39. scanf("%d", &menuSelect);
  40.  
  41. if (menuSelect == 1)
  42.  
  43. {
  44.  
  45. // Call the Square Function
  46.  
  47. Results = Square(intValue);
  48.  
  49. printf("Square of %f is %.2f\n",intValue,Results);
  50.  
  51. }
  52.  
  53. else if (menuSelect == 2)
  54.  
  55. {
  56.  
  57. // Call the Cube function
  58.  
  59. Results = Cube(intValue);
  60.  
  61. printf("Cube of %f is %.2f\n",intValue,Results);
  62.  
  63. }
  64.  
  65. else if (menuSelect == 3)
  66.  
  67. {
  68.  
  69. // Call the Shrink function
  70.  
  71. Results = Shrink(intValue);
  72.  
  73. printf("Shrink of %f is %.2f\n",intValue,Results);
  74. }
  75.  
  76. else
  77.  
  78. printf("Invalid menu item, only 1, 2 or 3 is accepted\n");
  79.  
  80. }
  81.  
  82. }
  83.  
  84. return 0;
  85.  
  86. }
  87.  
  88. /* function returning the Square of a number */
  89.  
  90. float Square(float value)
  91.  
  92. {
  93.  
  94. return value*value;
  95.  
  96. }
  97.  
  98. /* function returning the Cube of a number */
  99.  
  100. float Cube(float value)
  101.  
  102. {
  103. return value*value*value;
  104.  
  105. }
  106.  
  107. /* function returning the Shrink of a number */
  108.  
  109. double Shrink(float value)
  110.  
  111. {
  112. return value/2;
  113.  
  114. }
Runtime error #stdin #stdout 0s 4564KB
stdin
Standard input is empty
stdout
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu item, only 1, 2 or 3 is accepted
Enter a positive Integer or float 
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to calculate Shrink 
: Invalid menu