Computer Science, asked by chandnicontai7, 7 months ago

write a program input an integer and float value of runtime
& display the values​

Answers

Answered by Anonymous
3

\huge \mathbb{ \underline \purple{Input:}}

num_int = int(input("Enter an integer:"))

n_float= float(input("Enter a number:"))

print(num_int)

print(n_float)

 \huge \mathbb{ \underline\purple {Output:}}

Enter an integer: 10

Enter a number : 10

10

10.0

Similar questions