programozas
-
#295
Pythonban:
#!/usr/bin/python
a, b = 7, 1
while b<20:
if a*b%3==0:
print "*%i"%(a*b)
else:
print a*b
b = b+1