8 lines
65 B
Ruby
8 lines
65 B
Ruby
|
a = 0
|
||
|
b = 20
|
||
|
while( a < b )
|
||
|
a = a + 1
|
||
|
b = b - 1
|
||
|
end
|
||
|
return a
|