This repository has been archived on 2021-10-31. You can view files and clone it, but cannot push or open issues or pull requests.
CAHomework/Homework 8/maggioni_rodolfo_masera_ca8...

13 lines
229 B
Python

def product(n,m):
temp = 0
while m != 0:
if m > 0:
temp = temp + n
else:
temp = temp - n
if m > 0:
m = m - 1
else:
m = m + 1
return temp