9 lines
159 B
C
9 lines
159 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
int main(int argc, int argv[]){
|
||
|
int res;
|
||
|
res = argv[1] * argv[2];
|
||
|
printf("%d", res);
|
||
|
return 0;
|
||
|
}
|