24 lines
424 B
24 lines
424 B
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
int main() {
|
|
int x = 0;
|
|
while (__llair_choice()) {
|
|
x += 1;
|
|
while (__llair_choice()) {
|
|
x += 3;
|
|
if (__llair_choice()) {
|
|
x += 5;
|
|
} else {
|
|
x += 7;
|
|
}
|
|
x += 9;
|
|
}
|
|
}
|
|
return x;
|
|
}
|