You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
288 B
Python
11 lines
288 B
Python
1 year ago
|
from random import randint
|
||
|
number1 = input (str("Enter two number to know it sum\n"))
|
||
|
number2 = input (str("\n"))
|
||
|
print( int(number1) + int(number2))
|
||
|
|
||
|
randint (2,16)
|
||
|
first_input = input(str("What is 8 time 2"))
|
||
|
second_input = input (str(""))
|
||
|
print(int (first_input) * int(second_input))
|
||
|
|