diff --git a/createdTasks/skeleton.c b/createdTasks/skeleton.c
new file mode 100644
index 0000000000000000000000000000000000000000..5dfac1f1295a7eca023c10e2ed61c5f99001ecde
--- /dev/null
+++ b/createdTasks/skeleton.c
@@ -0,0 +1,23 @@
+#include "pico/stdlib.h"
+
+const uint ledPin = 14;
+const uint pushButtonPin = 13;
+
+// TODO: Define a function to get the push button pin
+bool getLogicState() {
+    
+}
+
+int main() {
+    // Initialize LED pin #Hint to output
+    
+
+    // Initialize push button pin # Hint as input 
+    
+   //after that get the logic of the push button and iterate to continuously check the state of the push button.
+
+
+
+   // dont forget to slepp to delay any issues 
+    return 0;
+}