scalar multiplication
kindly help me to run the below code in sage math cloud to obtained scalar multiplication Q
E = EllipticCurve(GF(71),[41,18] ) p = E(63,32) k=2 def mult(P,k): if k == 0: return E(0) elif k%2 ==1: return P + mult(P+P,k//2) else: return mult(P+P,k//2)
Please learn how to insert code on this site.
Note that some python code has a different meaning in the markup language of this site.
The following should work. Type the text. When a block code starts, then:
Please do not post anonymously any longer.
thank you madam/sir fpr your advise