mirror of
https://github.com/kmc7468/cs420.git
synced 2025-12-15 15:08:52 +00:00
11 lines
126 B
C
11 lines
126 B
C
int main() {
|
|
int a = 1;
|
|
int b = 2;
|
|
do {
|
|
int t = a;
|
|
a = b;
|
|
b = t;
|
|
} while (b == 1);
|
|
return a * 10 + b;
|
|
}
|