10 lines
		
	
	
		
			119 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			119 B
		
	
	
	
		
			Go
		
	
	
	
	
	
//golangcitest:args -Egofmt,goimports
 | 
						|
package p
 | 
						|
 | 
						|
func goimports(a, b int) int {
 | 
						|
	if a != b {
 | 
						|
		return 1
 | 
						|
	}
 | 
						|
	return 2
 | 
						|
}
 |