diff options
Diffstat (limited to 'Problem6.py')
-rw-r--r-- | Problem6.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Problem6.py b/Problem6.py new file mode 100644 index 0000000..78d7958 --- /dev/null +++ b/Problem6.py @@ -0,0 +1,11 @@ +def sumofsquares(n): + sum = 0 + for x in range(1,n+1): + sum+=(x*x) + return sum +def squareofsum(n): + sum = 0 + for x in range(1,n+1): + sum+=x + return (sum*sum) +print(squareofsum(100) - sumofsquares(100)) |