mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:30:46 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			226 B
		
	
	
	
		
			ActionScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			226 B
		
	
	
	
		
			ActionScript
		
	
	
	
	
	
// input: [1, 2]
 | 
						|
// output: 3
 | 
						|
 | 
						|
package {
 | 
						|
public class LocalVars {
 | 
						|
    public static function main(a:int, b:int):int{
 | 
						|
        var c:int = a + b + b;
 | 
						|
        var d:int = c - b;
 | 
						|
        var e:int = d;
 | 
						|
        return e;
 | 
						|
    }
 | 
						|
}
 | 
						|
}
 |