diff --git a/test.py b/test.py
index 9342eeab0b13f027d9f902120c6013a1ba2ce4f1..bf602711de909f992857d571ca8d1a09ef4d33bf 100644
--- a/test.py
+++ b/test.py
@@ -1,5 +1,5 @@
 # question 1)
-import itertools as iter
+import itertools as it
 class TabletteChocolat:
     def __init__(self,m,n):
         self.m=m
@@ -15,12 +15,23 @@ class TabletteChocolat:
         return "Tablette Chocolat de "+ str(self.m)+"X"+str(self.n)
     def __repr__(self):
         return str(self)
-    def coups_possible(self):
-        for i,j in range(self.m, self.n):
+    def coups_possibles(self):
+        j=0
+        for i in range(self.m):
+            if 0<i < self.m:
+                for j in range(self.n):
+                    if i==0 and 0<j<self.n:
+                        print(it.chain(range(5), range(self.m, self.m)))
+                
+       #[  iter.tuple(range(3), range(self.m,self.n)) for 0<i<self.m and j==0 ]
+         
+       
             
            
     
 t=TabletteChocolat(3, 4)
 t=TabletteChocolat(4, 4)
+g=t.coups_possibles()
+list(g)
 
 print(t)
\ No newline at end of file