diff --git a/P.c b/P.c
new file mode 100644
index 0000000000000000000000000000000000000000..dd6c15f8ba2f7ca36192be1d37082a9499275200
--- /dev/null
+++ b/P.c
@@ -0,0 +1,11 @@
+#include <stdio.h>
+
+int main() {
+    int c;
+    // 표준 입력(stdin)에서 데이터를 읽어와서 표준 출력(stdout)으로 출력합니다.
+    while ((c = getchar()) != EOF) {
+        putchar(c);
+    }
+    return 0;
+}
+