5 lines
70 B
C
5 lines
70 B
C
void main() {
|
|
int x = rand(0,10);
|
|
int y = 3*x;
|
|
assert(y == 3*x);
|
|
}
|