Gribouillis I wonder if it can be done for two variables with int and it will be super hard for two float
requires good knowledge of math and python
1 2 3 4 5 6 7 |
# very hard a = int ( input ( "number1: " )) b = int ( input ( "number2: " )) # super hard a = float ( input ( "number1: " )) b = float ( input ( "number2: " )) |