document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. class Kubus
  2. {
  3. public double s;
  4.  
  5. public double lp_kubus()
  6. {
  7. return s*s*6;
  8. }
  9.  
  10. public double v_kubus()
  11. {
  12. return s*s*s;
  13. }
  14. }
');