6 lines
71 B
C
6 lines
71 B
C
|
void main() {
|
||
|
int x = rand(0, 10);
|
||
|
x = 2 * x;
|
||
|
assert(x % 2 == 0);
|
||
|
}
|