7 lines
87 B
C
7 lines
87 B
C
#include<stdio.h>
|
|
int main(){
|
|
float dble;
|
|
scanf("%f",&dble);
|
|
printf("%f\n",dble);
|
|
}
|