aboutsummaryrefslogtreecommitdiff
path: root/test.c
blob: 26925e0601585beb1f6857c511e1ff39895e6b53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>

long long hehehaha();

long long addz(long long lhs, long long rhs) {
    return lhs + rhs + 1;
}

int main() {
    long long res = hehehaha();
    printf("%d\n", res);
    return 0;
}