diff --git a/Abdelrahamn_Shabara.md b/Abdelrahamn_Shabara.md new file mode 100644 index 0000000..5183931 --- /dev/null +++ b/Abdelrahamn_Shabara.md @@ -0,0 +1,17 @@ +```c# +using System; + +public class testt +{ + public static void Main(string[] args) + { + long num = long.Parse(Console.ReadLine()); + long sum = 0; + for (int i = 1; i <= num; i++) + { + sum += i; + } + Console.WriteLine(sum); + } +} +``` \ No newline at end of file