11 lines
103 B
C
11 lines
103 B
C
#include "printlib.h"
|
|
|
|
int main() {
|
|
|
|
int x,y;
|
|
x=4;
|
|
y=12+x;
|
|
return 0;
|
|
}
|
|
|
|
// EXPECTED
|