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/.gitignore b/hello/.gitignore
new file mode 100644
index 0000000000000000000000000000000000000000..f47cb2045f130d56b12a40b1ab207bd492281c17
--- /dev/null
+++ b/hello/.gitignore
@@ -0,0 +1 @@
+*.out
diff --git a/hello/main.c b/hello/main.c
new file mode 100644
index 0000000000000000000000000000000000000000..c6d446e66f26ca62f16335f5c87434af915808d3
--- /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;
+}