diff --git a/add.c b/add.c new file mode 100644 index 0000000..f510067 --- /dev/null +++ b/add.c @@ -0,0 +1,24 @@ +#include + +int main() + + + + + printf("Enter two integers: "); + + scanf("%d %d", &num1, &num2); + + + + // calculate the sum of two numbers + + sum = num1 + num2; + + + + // Print the result + + printf("%d + %d = %d", num1, num2, sum); + return 0; +} diff --git a/index.html b/index.html new file mode 100644 index 0000000..3981569 --- /dev/null +++ b/index.html @@ -0,0 +1,3 @@ +

Hello Pinky

+

hello

+