Quick actions

cmd+k|ctrl+k

Navigation

Languages

Can

Snippet info

Language

C

Visibility

public

Author

candhrika2515

Created

2023-03-20T04:59:24.742139Z

Updated

2023-03-20T04:59:46.285674Z

#include <stdio.h>

int main() {
    int a, b;
    float c;

    scanf("%d %d %f", &a, &b, &c);
    printf("%d %d %.3f\n", a, b, c);
    return 0;
}
INFO