10 lines
76 B
C++
10 lines
76 B
C++
|
|
void addtwo();
|
|
|
|
int main(){
|
|
int a = 1;
|
|
int b = 2;
|
|
addtwo();
|
|
}
|
|
|