This commit is contained in:
2025-02-12 03:29:55 +05:30
parent 9bf69b6b34
commit be5f500530

12
grasshopper.v Normal file
View File

@@ -0,0 +1,12 @@
import readline
fn main() {
mut r := readline.Readline{}
pos := r.read_line('What is your position number: ')!
roll := r.read_line('What is your roll number: ')!
p := pos.int()
rn := roll.int()
print(p + rn * 2)
}