aboutsummaryrefslogtreecommitdiff
path: root/5/input
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-04-16 05:32:33 +0100
committerAkshay <[email protected]>2021-04-16 06:06:29 +0100
commit30047205e440e9ad8984e1830b8b819b5fe1f9f7 (patch)
treec30239e30d0687903cdd76a43630e7bc58d8dd4c /5/input
parent5b54c1d51afad68d497a14d8c5e3a9fc852d5f20 (diff)
add prog 5
Diffstat (limited to '5/input')
-rw-r--r--5/input5
1 files changed, 5 insertions, 0 deletions
diff --git a/5/input b/5/input
new file mode 100644
index 0000000..8be510e
--- /dev/null
+++ b/5/input
@@ -0,0 +1,5 @@
1int main() {
2 int one, two, three;
3 three = two + one;
4 printf(three);
5}