diff --git a/yasmine-ahmed.md b/yasmine-ahmed.md new file mode 100644 index 0000000..d032cc9 --- /dev/null +++ b/yasmine-ahmed.md @@ -0,0 +1,11 @@ +```cpp +#include +using namespace std; + +int main() { + long long n; + cin >> n; + cout << n * (n + 1) / 2 << endl; + return 0; +} +```