Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 239577
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T20:35:48+00:00 2026-05-11T20:35:48+00:00

i want to take inputs like this 10 12 13 14 15 16 ..

  • 0

i want to take inputs like this
10 12

13 14

15 16

..

how to take this input , as two diffrent integers so that i can multiply them in python
after every 10 and 12 there is newline

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T20:35:48+00:00Added an answer on May 11, 2026 at 8:35 pm

    I’m not sure I understood your problem very well, it seems you want to parse two int separated from a space.

    In python you do:

    s = raw_input('Insert 2 integers separated by a space: ')
    a,b = [int(i) for i in s.split(' ')]
    print a*b
    

    Explanation:

    s = raw_input('Insert 2 integers separated by a space: ')
    

    raw_input takes everything you type (until you press enter) and returns it as a string, so:

    >>> raw_input('Insert 2 integers separated by a space: ')
    Insert 2 integers separated by a space: 10 12
    '10 12'
    

    In s you have now ’10 12′, the two int are separated by a space, we split the string at the space with

    >>> s.split(' ')
    ['10', '12']
    

    now you have a list of strings, you want to convert them in int, so:

    >>> [int(i) for i in s.split(' ')]
    [10, 12]
    

    then you assign each member of the list to a variable (a and b) and then you do the product a*b

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to make a program in Python that can take video input from
Requirement is like: I want to take input values from user in frame but
I want to take multiple integer inputs in same line eg :- input -1
I want to create an input form that will take the input text and
I want to write a script in AutoIt, which can take automatic input from
I want to define a method that take an integer as input and creates
I am working on a program that take user input for two file names.
What if I want to take user input from the args[0] array, but just
I want to have a form on my page take user input, a URL
What I want to achieve : Take a keyword array as input and query

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.