Files
c_reverse/week1/day1/exo_2.c
2026-05-30 10:31:26 +02:00

7 lines
81 B
C

int main(){
int a = 10;
int b = 20;
int sum = a + b;
return 0;
}