mirror of
https://github.com/renbaoshuo/202401-programming-assignments.git
synced 2024-11-23 21:58:41 +00:00
13 lines
162 B
C
13 lines
162 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int main() {
|
||
|
int a, b;
|
||
|
|
||
|
scanf("%d %d", &a, &b);
|
||
|
|
||
|
printf("C = %d\n", (a + b) * 2);
|
||
|
printf("S = %d\n", a * b);
|
||
|
|
||
|
return 0;
|
||
|
}
|