2021-05-05 18:29:44 +03:00
|
|
|
/*
|
|
|
|
namespace: Compile
|
|
|
|
expectation: Pass
|
|
|
|
input_file: input/dummy.in
|
|
|
|
*/
|
|
|
|
|
2020-06-23 04:28:30 +03:00
|
|
|
function iteration() -> u32 {
|
2021-03-18 22:19:07 +03:00
|
|
|
let a = 0u32;
|
2020-06-23 04:28:30 +03:00
|
|
|
|
2020-07-17 22:59:18 +03:00
|
|
|
for i in 0..10 {
|
|
|
|
a += 1;
|
|
|
|
}
|
2020-06-23 04:28:30 +03:00
|
|
|
|
2021-04-14 23:59:07 +03:00
|
|
|
return a;
|
2020-06-23 04:28:30 +03:00
|
|
|
}
|
|
|
|
|
2021-05-13 16:56:17 +03:00
|
|
|
function main(y: bool) -> bool {
|
2021-03-18 22:19:07 +03:00
|
|
|
const total = iteration() + iteration();
|
2020-07-30 22:10:33 +03:00
|
|
|
|
2021-05-13 16:56:17 +03:00
|
|
|
return total == 20 == y;
|
2021-05-05 18:29:44 +03:00
|
|
|
}
|