|  | @@ -2,6 +2,24 @@
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  from random import randint, choice
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +def zweistellig_plus_zehner():
 | 
	
		
			
				|  |  | +    x = randint(11, 99)
 | 
	
		
			
				|  |  | +    y = randint(1, x//10)
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    aufgabe = f"{ x - 10 * y } + { y }0 = ?"
 | 
	
		
			
				|  |  | +    ergebnis = x
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    return (aufgabe, ergebnis, 3)
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +def zehner_minus_einstellig():
 | 
	
		
			
				|  |  | +    x = randint(1, 89)
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    aufgabe = f"{ (x//10 + 1) * 10 } - { (x//10 + 1) * 10 - x } = ?"
 | 
	
		
			
				|  |  | +    ergebnis = x
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    return (aufgabe, ergebnis, 3)
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  def bis_zum_naechsten_zehner():
 | 
	
		
			
				|  |  |      x = randint(1, 8)
 |