Sum of squares P36668


Statement
 

pdf   zip

Write a program that reads a natural number nn, and prints the result of the following sum: 12+22++(n1)2+n2.1^2 + 2^2 + \dots + (n-1)^2 + n^2 .

Input

Input consists of a natural number nn.

Output

Print the sum of the first nn squares: i=1ni2\sum_{i=1}^{n} i^2.

Observation

The summation has a closed formula, so a loop would not be necessary to solve this exercise.

Public test cases
  • Input

    3
    

    Output

    14
    
  • Input

    4
    

    Output

    30
    
  • Information
    Author
    Salvador Roura
    Language
    English
    Translator
    Carlos Molina
    Original language
    Catalan
    Other languages
    Catalan
    Official solutions
    C++ Java Python
    User solutions
    C C++ Fortran Haskell Java JavaScript Lisp PHP Python Rust