mirror of https://github.com/yt-dlp/yt-dlp
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
226 B
ActionScript
14 lines
226 B
ActionScript
10 years ago
|
// 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;
|
||
|
}
|
||
|
}
|
||
|
}
|