diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000000000000000000000000000000000000..f47cb2045f130d56b12a40b1ab207bd492281c17
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+*.out
diff --git a/hello/main.c b/hello/main.c
new file mode 100644
index 0000000000000000000000000000000000000000..26e47a12470f6e4e8dc1fbe64d4c7169379281ca
--- /dev/null
+++ b/hello/main.c
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main(){
+	printf("Hello World! I am in GIT\n");
+	return 0;
+}