7 lines
81 B
C
7 lines
81 B
C
|
|
int main(){
|
|
int a = 10;
|
|
int b = 20;
|
|
int sum = a + b;
|
|
return 0;
|
|
} |