0
Why doesn't the age = int(input()) work wheneverI put a value in for age inside input's brackets
#input hard
12 Antworten
+ 1
Try to put those two numbers in separate lines, as follows ...
90
9
Then hit Submit button ...
+ 2
First = int(input())
Second = int(input())
print(First, Second)
Run code and put these numbers when the input dialog comes
2000
20
Try it and tell me how it goes.
If it doesn't work, then you need to share your code for analysis. Just follow the below guide to share links 👍
https://www.sololearn.com/post/75089/?ref=app
+ 1
You should visit it:👇
https://code.sololearn.com/WhiNb9BkJUVC/?ref=app
+ 1
No, write just like this
First = int(input())
Second = int(input())
print(First, Second)
Tap on "Run" button in the code editor and provide these numbers when the input dialog pops up
2000
20
Hit "Submit" button ...
And please also see the code given by VadiVelan. It shows you how input works in SoloLearn.
0
What value did you give in the input dialog?
0
90 and 9
0
Ok I will try
0
I don't understand give me an example
0
Oh and I did the numbers I said one at a time
0
Didn't work out but on the bright side thanks for helping me out
0
Wait lemme try again
0
First = int(input(2000))
Second = int(input(20))
(print) (First,Second)
This is what I wrote