CAP/MiniC/TP04/tests/students/base/test_mul.c

13 lines
119 B
C
Raw Normal View History

2024-10-21 23:10:10 +02:00
#include "printlib.h"
int main() {
int x, y;
x = 12;
y = 5;
println_int(x*y);
return 0;
}
// EXPECTED
// 60