My issue
how write program in single line in input program
My code
#include <stdio.h>
int main(void) {
// your code goes here
return 0;
}
Problem Link: START01 Problem - CodeChef
how write program in single line in input program
#include <stdio.h>
int main(void) {
// your code goes here
return 0;
}
Problem Link: START01 Problem - CodeChef
include
using namespace std;
int main() {
// your code goes here
int n;
// cin << n << endl;
scanf( ā%dā , &n);
cout << n;
return 0;
}