move misc. files to onclass folder
This commit is contained in:
parent
a77b21b893
commit
5bbb717897
10
onclass/multiply.c
Normal file
10
onclass/multiply.c
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
int main (void)
|
||||||
|
{
|
||||||
|
int a, b;
|
||||||
|
scanf("%d %d",&a, &b);
|
||||||
|
printf("%d", a * b);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in a new issue