#include <stdio.h>
int main(void) {
int i;
double x;
scanf("%d", &i);
scanf("%f", &x);
printf("|%d|%5d|%-5d|%5.3d|\n", i, i, i, i);
printf("|%10.3f|%10.3e|%-10g|", x, x, x);
return 0;
//使用者輸入(第一個為整數,中間空一格,再輸入第二個浮點數)
//123 123.456
//程式輸出
//正解
//|123| 123|123 | 123|
//| 123.456|1.235e+002|123.456 |
//程式執行的結果
//|123| 123|123 | 123|
//| 0.000|5.551e-315|5.55072e-315|