Skip to content
Snippets Groups Projects
test.mcc 159 B
Newer Older
Clemens Paumgarten's avatar
Clemens Paumgarten committed
int main() {
Clemens Paumgarten's avatar
Clemens Paumgarten committed
    int a;
    int b;
    int max;
    a = 1;
    b = 2;

    if (a < b) {
        max = b;
    } else {
        max = a;
Clemens Paumgarten's avatar
Clemens Paumgarten committed
    }