about summary refs log tree commit diff
path: root/others/easy20160714/20.c
diff options
context:
space:
mode:
Diffstat (limited to 'others/easy20160714/20.c')
-rw-r--r--others/easy20160714/20.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/others/easy20160714/20.c b/others/easy20160714/20.c
new file mode 100644
index 0000000..de2c222
--- /dev/null
+++ b/others/easy20160714/20.c
@@ -0,0 +1,27 @@
+#include <stdio.h>
+#include <string.h>
+
+int main()
+{
+	FILE *f = fopen("INP.TXT", "r");
+	char x[1001], y[1001], r = 0;
+	short m, n, i, j = 0, z[1000][128] = {};
+
+	fscanf(f, "%s %s", x, y);
+	fclose(f);
+
+	m = strlen(x);
+	n = strlen(y);
+
+	for (i = 0; i < n; i++)
+		if ((y[i] == x[j]) && (++j == m)) {
+			r = 1;
+			break;
+		}
+
+	f = fopen("OUT.TXT", "w");
+	fputs(r ? "YES\n" : "NO\n", f);
+	fclose(f);
+
+	return 0;
+}