aboutsummaryrefslogtreecommitdiff
path: root/12/input
blob: b35b023ea2369fca97a7d0a264e4337653ae1ecb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
int main(int a, int b, int c) {
    if (a > b) {
        int i = 1;
        float j = 2;
    } else if (a < b) {
        b++;
        while(a > b) {
            a++;
        }
    } else {
        c++;
    }
}