8 lines
106 B
C
8 lines
106 B
C
#include <stdio.h>
|
|
|
|
int main() {
|
|
int n;
|
|
scanf("%d", &n);
|
|
printf("%d", n * 10);
|
|
return 0;
|
|
} |