func f(a, b) {
    return a + b;
}


func main() {
    a = f(1, 2);
    c = f(2, 3.3);
    return 0;
}
