2022-05-13 09:20:35 +03:00
|
|
|
/*
|
|
|
|
namespace: Compile
|
2022-06-17 02:45:37 +03:00
|
|
|
expectation: Pass
|
|
|
|
input_file: inputs/add.in
|
2022-05-13 09:20:35 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
function main(a: i64, b: i64, c: i64) -> bool {
|
2022-06-17 02:45:37 +03:00
|
|
|
return a | b == c;
|
2022-05-13 09:20:35 +03:00
|
|
|
}
|