Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def multiply(a,b)
- return a*b
- end
- puts "Enter the first number"
- first=gets.chomp()
- puts "Enter the second number"
- second=gets.chomp()
- puts multiply(first.to_i,second.to_i)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement