/*
#include <stdio.h>
int main()
{
printf("Hello");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello World");
return 0;
}
#include <stdio.h>
int main()
{
printf("Hello\nWorld");
return 0;
}
#include <stdio.h>
int main()
{
printf("\'Hello'");
return 0;
}
#include <stdio.h>
int main()
{
printf("\"Hello World\"");
return 0;
}
#include <stdio.h>
int main()
{
printf("\"!@#$%%^&*()\"");
return 0;
}
#include <stdio.h>
int main()
{
printf("\"C:\\Download\\hello.cpp\"");
return 0;
}
#include<stdio.h>
int main() {
int a;
long long int b;
float c;
double d;
char e;
// int > %d > -2^31 ~ +2^31-1
// long long int > %lld > -2^63 ~ +2^63-1
// float > %f
// double > %lf
// char %c
scanf("%d", &a);
printf("%d", a+a);
}
#include <stdio.h>
int main()
{
int n;
scanf("%d",&n);
printf("%d",n);
return 0;
}
#include <stdio.h>
int main()
{
char x;
scanf("%c",&x);
printf("%c",x);
return 0;
}
#include <stdio.h>
int main()
{
float x;
scanf("%f",&x);
printf("%f",x);
return 0;
}
#include <stdio.h>
int main()
{
int a, b;
scanf("%d%d",&a,&b);
printf("%d %d",a,b);
return 0;
}
*/
//#include <stdio.h>
//int main()
//{
// char x,y;
// scanf("%c %c",&x,&y);
// printf("%c %c",y,x);
// return 0;
//}
//
//#include<stdio.h>
//
//int main() {
// int a, b, c;
//
// scanf("%d %d", &a, &b);
// c = a +-* b;
// //a + b = c;
// printf("%d", c);
//}
//#include<stdio.h>
//
//int main() {
// int a;
// double b;
// scanf("%d %lf", &a, &b);
// printf("%lf", a/b);
//}
/*
#include<stdio.h>
int main()
{
int a, b;
scanf("%d %d", &a, &b);
printf("%lld", (long long int)a+b);
return 0;
}
#include<stdio.h>
int main()
{
long long int a, b;
scanf("%lld %lld", &a,&b);
printf("%lld", a+b);
return 0;
}
#include<stdio.h>
int main()
{
int a;
scanf("%d",&a);
printf("%d",-a);
return 0;
}
#include<stdio.h>
int main()
{
char a;
scanf("%c", &a);
printf("%c",a+1);
return 0;
}
*/
#include<stdio.h>
int main()
{
int a;
scanf("%d %d",&a);
printf("%f",(float)a);
return 0;
}