Maximum values

Report a typo

Read three integers from the input (each is on a new line) and create a one-dimensional array out of them. Print the maximum value in your array and its index.

Sample Input 1:

1200
900
346

Sample Output 1:

1200
0
Write a program in Python 3
import numpy as np
___

Create a free account to access the full topic