mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-13 03:32:22 +00:00
15 lines
192 B
Text
15 lines
192 B
Text
|
fun main(s: int) {
|
||
|
var (z, t) = (17, s);
|
||
|
while (z > 0) {
|
||
|
t = s;
|
||
|
z -= 1;
|
||
|
}
|
||
|
return ~ t;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
method_id | in | out
|
||
|
@testcase | 0 | 1 | -2
|
||
|
@testcase | 0 | 5 | -6
|
||
|
*/
|