#include <stdio.h>
int main(){
    int x=5;
    float y=11.56;
    int sum=  x + y;
    printf("%f", sum);
    return 0;
}