// Standard C header.h -> cheader, namespace std
#include <cstdio>
using namespace std;

int main() {
    printf("%d %f %s\n", 5, 3.14, "foo");
}
