9 lines
89 B
C
9 lines
89 B
C
static int mem;
|
|
|
|
int main() {
|
|
int a = 42;
|
|
int b = 5;
|
|
mem = a*b + 3;
|
|
|
|
return 0;
|
|
}
|