@@ -0,0 +1,20 @@
+import random
+i=1
+list =[]
+
+#6 aus 49
+while i <= 6:
+ x = random.randint(1, 49)
+ if x in list:
+ pass
+ else:
+ list.append(x)
+ i +=1
+print"Ihre Lottozahlen sind:"
+print list
+#Superzahl
+y = random.randint(1, 9)
+print"Die Supeerzahl lautet:"
+print y