#include <stdio.h>

struct ret { int a; int b} hello(int c) {
    return (struct ret){ c, c + 1 };
}

int main(int argc, char **argv) {
    struct ret result = hello(2);
    printf("%d %d", result.a, result.b);
}
