Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- puts "Enter the number from which you have to start printing"
- i=gets.chomp().to_i
- puts "Enter the number where you have to stop"
- b=gets.chomp().to_i
- puts "The numbers are"
- while i<=b
- puts i
- i=i+1
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement