0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 12:45:25 +00:00
OI-codes/S2OJ/1167/1167.cpp

8 lines
145 B
C++
Raw Normal View History

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