x = 1; repeat(100) { print("sin(x) x= ", x, " ", sin(x)); x = x +1; } if(x == 101) print("Hurray, success!");