mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 08:38:48 +00:00
8 lines
145 B
C++
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;
|
||
|
}
|