dua jumlah jumlah input dalam python

m=int(input("Enter First Number:"))
n=int(input("Enter Second Number:"))
x=m+n
print(x)
Mayur Parmar