4 Home
Eryk Miszczuk edited this page 2019-10-22 12:37:35 +00:00

Welcome to Wiki!

const excerciseNuber = (studentId) => 
    `TaskA0${studentId % 10}, TaskA${studentId % 27}, TaskA0${studentId % 7}, TaskA0${studentId % 5}`;
import sys

count = 0

for line in sys.stdin:
    count += int(line)

print count