0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 01:05:24 +00:00
OI-codes/S2OJ/1167/1167.cpp

8 lines
145 B
C++

// Compile command: g++ implementer.cpp 1167.cpp -o 1167 -O2 -lm
#include "head.h"
unsigned solv(unsigned a, unsigned b) {
return a * b;
}