//#include <stdio.h>
//#include <math.h>
//
//int main()
//{
// printf("Hello world!\n");
// return 0;
//}
//#include <stdio.h>
//#include <math.h>
//
//int main()
//{
// printf("Fun Programming!");
// return 0;
//}
//#include <stdio.h>
//#include <math.h>
//
//int main()
//{
// printf("Programming! It's fun.");
// return 0;
//}
//#include <stdio.h>
//#include <math.h>
//
//int main()
//{
// printf("My name is Hong Gil Dong.\n");
// printf("I am 13 years old.\n");
// return 0;
//}
//#include <stdio.h>
//#include <math.h>
//
//int main()
//{
// printf("(@) (@)\n");
// printf("(=^.^=)\n");
// printf("(-m-m-)");
// return 0;
//}
//#include <stdio.h>
//#include <math.h>
//
//int main()
//{
// printf("I can program well.\n");
// printf("Dreams come true.");
// return 0;
//}
//#include <stdio.h>
//#include <math.h>
//
//int main()
//{
// printf("My height\n");
// printf("170\n");
// printf("My weight\n");
// printf("68.600000");
// return 0;
//}
//#include <stdio.h>
//#include <math.h>
//
//int main()
//{
// printf("5 Dan\n");
// printf("5 * 2 = 10");
// return 0;
//}
//#include <stdio.h>
//#include <math.h>
//
//int main()
//{
// printf("%10s%10s%10s\n", "item", "count", "price");
// printf("%10s%10s%10s\n", "pen", "20", "100");
// printf("%10s%10s%10s", "eraser", "110", "97");
// return 0;
//}
//#include <stdio.h>
//#include <math.h>
//
//int main()
//{
// printf("My name is Hong");
// return 0;
//}
/*
정수
int %d
long long int %lld
실수
float %f
double %lf
문자
char %c
*/
//#include<stdio.h>
//
//int main() {
// int x, y;
// double c;
//
// x = 100;
// y = 200;
//
// c = 3.14;
//
// printf("%d %d %d\n", x, y, x+y);
// printf("PI value is %lf", c);
//
//}
//#include<stdio.h>
//
//int main() {
// int x, y;
//
// scanf("%d %d", &x, &y);
//
// printf("%d", x+y);
//
// return 0;
//
//}
/*
정수
int %d
long long int %lld
실수
float %f
double %lf
문자
char %c
*/
//#include <stdio.h>
//
//int main() {
// int x;
//
// x=-100;
//
// printf("%d", x);
//
//}
//#include <stdio.h>
//
//int main(){
//
// int x, y;
//
// x=-1;
// y=100;
//
// printf("%d\n", x);
// printf("%d", y);
//}
//#include <stdio.h>
//
//int main()
//{
// int x, y;
//
// printf("%d - %d = %d\n", 55, 10, 45);
// printf("2008 - 1999 = 9");
//}
//#include <stdio.h>
//
//int main()
//{
// printf("49 * 0.268300 = 13.146700");
//}
//#include <stdio.h>
//
//int main()
//{
// double a, b, c, d;
//
// a=2.1;
// b=192.0;
// c=10.5;
// d=26.7;
//
// printf("%4.1lfyd = %.1lfcm\n", a, b);
// printf("%4.1lfin = %5.1lfcm", c, d);
//}
//#include<stdio.h>
//
//int main() {
// int x, y;
//
// scanf("%d %d", &x, &y);
//
// printf("%d", x+y);
//
// return 0;
//
//}
//#include<stdio.h>
//
//int main()
//{
// int x;
//
// printf("height = ");
// scanf("%d", &x);
// printf("Your height is %dcm.", x);
// return 0;
//}
//#include<stdio.h>
//
//int main()
//{
// int x, y;
//
// scanf("%d %d", &x, &y);
// printf("%d * %d = %d\n", x, y, x * y);
// printf("%d / %d = %d", x, y, x / y);
// return 0;
//}
#include<stdio.h>
int main()
{
double a, b;
char c;
scanf("%lf %lf %c", &a, &b, &c);
printf("%.2lf\n", a);
printf("%.2lf\n", b);
printf("%c", c);
}