summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--10284/fen2.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/10284/fen2.cpp b/10284/fen2.cpp
new file mode 100644
index 0000000..53f02e6
--- /dev/null
+++ b/10284/fen2.cpp
@@ -0,0 +1,13 @@
+#include <iostream>
+#include <string>
+using namespace std;
+
+int main(){
+ string fen;
+
+ while(cin>>fen){
+ int board[8][8] = {0};
+
+
+ }
+}