diff --git a/abdulrhmany.md b/abdulrhmany.md new file mode 100644 index 0000000..0e86393 --- /dev/null +++ b/abdulrhmany.md @@ -0,0 +1,9 @@ +# Hello + +You are given a positive integer n. Your task is to find the sum of all positive integers less than or equal to n. + +### Solution +```python +n = int(input()) +print(n * (n + 1) // 2) +```