8 lines
71 B
Plaintext
8 lines
71 B
Plaintext
|
main() {
|
||
|
x := 256
|
||
|
x %= 100
|
||
|
assert x == 56
|
||
|
|
||
|
x %= 10
|
||
|
assert x == 6
|
||
|
}
|