I even found the resultant vector and printed it's magnitude, but I can't plot it.

Here is the code: Here I am finding the resultant and which is correct but my graph is incorrect. The output I am getting is at the end.
import numpy as np
a1=np.array([2,3])
a2=np.array([1,6])
import matplotlib.pyplot as plt
plt.xlim(-10,10)
plt.ylim(-10,10)
at=a1+a2
origin=np.array([0,0])
plt.quiver(*origin,at[0],at[1],scale=50)
plt.grid()
plt.ylabel('Y-axis')
plt.xlabel('X-axis')
plt.legend(['Vector Addition of two vectors'])
plt.show()
print(at)
m=np.linalg.norm(at)
print(m)
