/*
 * Copyright (c) 2024 Huawei Device Co., Ltd.
 * Licensed under the Apache License, Version 2.0 (the License);
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
import assert from "assert";
let h = 0;
let i = 0;
let j = 0;
let k = 0;
let l = 0;
if (i + j === k)
    l += 1;
assert(l === 1);
if (i + j === k) {
    l += 1;
}
;
assert(l === 2);
if (i + j !== k)
    l += 1;
else
    l = 0;
assert(l === 0);
if (i + j === k) {
    l += 2;
}
else { }
assert(l === 2);
function g(m: number): string {
    let n: string = '';
    switch (m) {
        case 1:
            h++;
            return "Monday";
        case 2:
            n = "Tuesday";
            break;
        case 3:
            return "Wednesday";
        case 4:
            return "Thursday";
        case 5:
            return "Friday";
        case 6:
            return "Saturday";
        case 7:
            return "Sunday";
        default:
            return "Invalid day";
    }
    return n;
}
assert(g(2) === 'Tuesday');
assert(g(1) === 'Monday');
assert(h === 1);
