Generation

fix invalid codeSun, 11 Dec 2022

import 'dart:io'; main() { print('Syötä luku.'); var luku = int.parse(stdin.readLineSync());

if (luku % 2 == 0) { print('$luku on parillinen.'); } else { print('$luku on pariton.'); }

Want to kickstart your project?Use the new AI Studio to create your code