R Basic1

                               Writing Functions in R



             Cube<-function(x){print(x*x*x)};

          Cube(10)