10 lines
151 B
V
10 lines
151 B
V
import os
|
|
|
|
fn main() {
|
|
s := os.input('Enter string').int()
|
|
if s == 75000 {
|
|
println('good')
|
|
} else {
|
|
println('bad')
|
|
}
|
|
}
|