#include <conio.h> #include <stdio.h> int main() { int numero; printf( "\n Introduzca un n%cmero entero: ", 163 ); scanf( "%d", &numero ); if ( numero % 2 == 0 ) printf( "\n ES PAR" ); else printf( "\n ES IMPAR" ); getch(); /* Pausa */ return 0; }
language of the code: def add(a, b): return a + b add(1, 2) == 3 """ if not isinstance(code, str): raise TypeError('code must be a string') if not isinstance(filename, str): raise TypeError('filename must be a string')