mirror of
				https://github.com/ton-blockchain/ton
				synced 2025-03-09 15:40:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			120 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			120 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| _ f(int a, int x) {
 | |
|   int y = 0;
 | |
|   int z = 0;
 | |
|   while ((y = x * x) > a) {
 | |
|     x -= 1;
 | |
|     z = 1;
 | |
|   }
 | |
|   return (y, z);
 | |
| }
 |